rigjs 1.0.33 → 1.0.34
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/info/index.js +1 -0
- package/package.json +1 -1
package/lib/info/index.js
CHANGED
|
@@ -10,6 +10,7 @@ const json5 = require('json5');
|
|
|
10
10
|
const print = require('../print');
|
|
11
11
|
//加载命令控制器
|
|
12
12
|
const info = () => {
|
|
13
|
+
console.log('process.platform');
|
|
13
14
|
print.info(`start checking modules|OS:${process.platform} `);
|
|
14
15
|
let rigJson5 = json5.parse(fs.readFileSync('package.rig.json5'));
|
|
15
16
|
for (let dep of rigJson5) {
|
package/package.json
CHANGED