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.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: {