智能照明系统APP-本地串口
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
LightingSystemApp-serial/.svn/pristine/e9/e93da8d0f0866b4463d01de4072...

20 lines
378 B

#!/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
}));
});