mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-09-15 12:27:30 +00:00
20 lines
376 B
JavaScript
20 lines
376 B
JavaScript
#!/usr/bin/env node
|
|
'use strict';
|
|
|
|
const {
|
|
loadNycConfig
|
|
} = require('@istanbuljs/load-nyc-config');
|
|
|
|
async function main() {
|
|
const [cwd, nycrcPath] = process.argv.slice(2);
|
|
console.log(JSON.stringify(await loadNycConfig({
|
|
cwd,
|
|
nycrcPath
|
|
})));
|
|
}
|
|
|
|
main().catch(error => {
|
|
console.log(JSON.stringify({
|
|
'load-nyc-config-sync-error': error.message
|
|
}));
|
|
}); |