mol_dump_lib 0.0.469 → 0.0.470
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.d.ts +53 -53
- package/node.js +1 -1
- package/node.js.map +1 -1
- package/node.mjs +1 -1
- package/node.test.js +1 -1
- package/node.test.js.map +1 -1
- package/package.json +1 -1
- package/web.d.ts +53 -53
- package/web.js.map +1 -1
package/node.mjs
CHANGED
|
@@ -5428,7 +5428,7 @@ var $;
|
|
|
5428
5428
|
return { destructor() { } };
|
|
5429
5429
|
const watcher = $node.chokidar.watch(this.path(), {
|
|
5430
5430
|
persistent: true,
|
|
5431
|
-
ignored: /(
|
|
5431
|
+
ignored: path => /([\/\\]\.|___$)/.test(path),
|
|
5432
5432
|
depth: 0,
|
|
5433
5433
|
ignoreInitial: true,
|
|
5434
5434
|
awaitWriteFinish: {
|
package/node.test.js
CHANGED
|
@@ -5419,7 +5419,7 @@ var $;
|
|
|
5419
5419
|
return { destructor() { } };
|
|
5420
5420
|
const watcher = $node.chokidar.watch(this.path(), {
|
|
5421
5421
|
persistent: true,
|
|
5422
|
-
ignored: /(
|
|
5422
|
+
ignored: path => /([\/\\]\.|___$)/.test(path),
|
|
5423
5423
|
depth: 0,
|
|
5424
5424
|
ignoreInitial: true,
|
|
5425
5425
|
awaitWriteFinish: {
|