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.
Files changed (2) hide show
  1. package/cli.js +1 -15
  2. 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();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ic-mops",
3
- "version": "0.6.2",
3
+ "version": "0.6.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "mops": "cli.js"