mol_plot_all 1.2.669 → 1.2.671
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.deps.json +1 -1
- package/node.js +2 -2
- package/node.js.map +1 -1
- package/node.mjs +2 -2
- package/node.test.js +3 -2
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.deps.json +1 -1
package/node.mjs
CHANGED
|
@@ -1397,9 +1397,9 @@ var $node = new Proxy({ require }, {
|
|
|
1397
1397
|
while (!fs.existsSync(path.join(dir, suffix))) {
|
|
1398
1398
|
const parent = path.resolve(dir, '..');
|
|
1399
1399
|
if (parent === dir) {
|
|
1400
|
-
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', name);
|
|
1400
|
+
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '--no-save', name);
|
|
1401
1401
|
try {
|
|
1402
|
-
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
|
|
1402
|
+
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '--no-save', '@types/' + name);
|
|
1403
1403
|
}
|
|
1404
1404
|
catch { }
|
|
1405
1405
|
break;
|
package/node.test.js
CHANGED
|
@@ -1389,9 +1389,9 @@ var $node = new Proxy({ require }, {
|
|
|
1389
1389
|
while (!fs.existsSync(path.join(dir, suffix))) {
|
|
1390
1390
|
const parent = path.resolve(dir, '..');
|
|
1391
1391
|
if (parent === dir) {
|
|
1392
|
-
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', name);
|
|
1392
|
+
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '--no-save', name);
|
|
1393
1393
|
try {
|
|
1394
|
-
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '@types/' + name);
|
|
1394
|
+
$$.$mol_exec('.', 'npm', 'install', '--omit=dev', '--no-save', '@types/' + name);
|
|
1395
1395
|
}
|
|
1396
1396
|
catch { }
|
|
1397
1397
|
break;
|
|
@@ -9438,6 +9438,7 @@ var $;
|
|
|
9438
9438
|
if (this.type() !== 'dir')
|
|
9439
9439
|
return [];
|
|
9440
9440
|
const path = this.path();
|
|
9441
|
+
this.stat();
|
|
9441
9442
|
try {
|
|
9442
9443
|
return $node.fs.readdirSync(path)
|
|
9443
9444
|
.filter(name => !/^\.+$/.test(name))
|