mol_plot_all 1.2.275 → 1.2.276

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
@@ -250,9 +250,9 @@ var $node = new Proxy({ require }, {
250
250
  while (!fs.existsSync(path.join(dir, suffix))) {
251
251
  const parent = path.resolve(dir, '..');
252
252
  if (parent === dir) {
253
- $$.$mol_exec('.', 'npm', 'install', name);
253
+ $$.$mol_exec('.', 'npm', 'install', '--omit=dev', name);
254
254
  try {
255
- $$.$mol_exec('.', 'npm', 'install', '@types/' + name);
255
+ $$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
256
256
  }
257
257
  catch { }
258
258
  break;