mol_jsx_lib 0.0.939 → 0.0.940

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/node.js CHANGED
@@ -119,9 +119,9 @@ var $node = new Proxy({ require }, {
119
119
  while (!fs.existsSync(path.join(dir, suffix))) {
120
120
  const parent = path.resolve(dir, '..');
121
121
  if (parent === dir) {
122
- $$.$mol_exec('.', 'npm', 'install', '--omit=dev', name);
122
+ $$.$mol_exec('.', 'npm', 'install', '--omit=dev', '--no-save', name);
123
123
  try {
124
- $$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
124
+ $$.$mol_exec('.', 'npm', 'install', '--omit=dev', '--no-save', '@types/' + name);
125
125
  }
126
126
  catch { }
127
127
  break;