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.esm.js +2 -2
- package/node.esm.js.map +1 -1
- package/node.js +2 -2
- package/node.js.map +1 -1
- package/node.test.js +2 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
package/node.test.js
CHANGED
|
@@ -242,9 +242,9 @@ var $node = new Proxy({ require }, {
|
|
|
242
242
|
while (!fs.existsSync(path.join(dir, suffix))) {
|
|
243
243
|
const parent = path.resolve(dir, '..');
|
|
244
244
|
if (parent === dir) {
|
|
245
|
-
$$.$mol_exec('.', 'npm', 'install', name);
|
|
245
|
+
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', name);
|
|
246
246
|
try {
|
|
247
|
-
$$.$mol_exec('.', 'npm', 'install', '@types/' + name);
|
|
247
|
+
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
|
|
248
248
|
}
|
|
249
249
|
catch { }
|
|
250
250
|
break;
|