ic-mops 0.6.2 → 0.6.4
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/cli.js +1 -15
- package/package.json +1 -1
package/cli.js
CHANGED
|
@@ -113,6 +113,7 @@ program
|
|
|
113
113
|
.description('for dfx packtool')
|
|
114
114
|
.option('--verbose')
|
|
115
115
|
.action(async (options) => {
|
|
116
|
+
await installAll({silent: true});
|
|
116
117
|
await sources(options);
|
|
117
118
|
});
|
|
118
119
|
|
|
@@ -158,19 +159,4 @@ program
|
|
|
158
159
|
// upgrade();
|
|
159
160
|
// });
|
|
160
161
|
|
|
161
|
-
// upgrade
|
|
162
|
-
program
|
|
163
|
-
.command('e <e>')
|
|
164
|
-
.action((e) => {
|
|
165
|
-
child_process.exec(e, {stdio: 'inherit'});
|
|
166
|
-
// child_process.execSync('node -v', {stdio: 'inherit'});
|
|
167
|
-
});
|
|
168
|
-
|
|
169
|
-
program
|
|
170
|
-
.command('es <e>')
|
|
171
|
-
.action((e) => {
|
|
172
|
-
child_process.execSync(e, {stdio: 'inherit'});
|
|
173
|
-
// child_process.execSync('node -v', {stdio: 'inherit'});
|
|
174
|
-
});
|
|
175
|
-
|
|
176
162
|
program.parse();
|