@atlaspack/fs 2.15.7 → 2.15.8

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/fs",
3
- "version": "2.15.7",
3
+ "version": "2.15.8",
4
4
  "description": "Blazing fast, zero configuration web application bundler",
5
5
  "license": "(MIT OR Apache-2.0)",
6
6
  "publishConfig": {
@@ -53,16 +53,16 @@
53
53
  },
54
54
  "dependencies": {
55
55
  "@atlaspack/build-cache": "2.13.3",
56
- "@atlaspack/feature-flags": "2.18.0",
57
- "@atlaspack/logger": "2.14.10",
56
+ "@atlaspack/feature-flags": "2.18.1",
57
+ "@atlaspack/logger": "2.14.11",
58
58
  "@atlaspack/rust": "3.3.5",
59
- "@atlaspack/types-internal": "2.14.10",
60
- "@atlaspack/utils": "2.15.0",
59
+ "@atlaspack/types-internal": "2.14.11",
60
+ "@atlaspack/utils": "2.15.1",
61
61
  "@parcel/watcher": "^2.0.7",
62
- "@atlaspack/workers": "2.14.12"
62
+ "@atlaspack/workers": "2.14.13"
63
63
  },
64
64
  "devDependencies": {
65
- "@atlaspack/watcher-watchman-js": "2.14.12",
65
+ "@atlaspack/watcher-watchman-js": "2.14.13",
66
66
  "graceful-fs": "^4.2.4",
67
67
  "ncp": "^2.0.0",
68
68
  "nullthrows": "^1.1.1",
@@ -4,6 +4,7 @@ import {OverlayFS} from '../src/OverlayFS';
4
4
  import {fsFixture} from '@atlaspack/test-utils/src/fsFixture';
5
5
  import {MemoryFS} from '../src/MemoryFS';
6
6
  import WorkerFarm from '@atlaspack/workers';
7
+ import {WORKER_PATH} from '@atlaspack/core';
7
8
 
8
9
  import assert from 'assert';
9
10
  import path from 'path';
@@ -15,7 +16,7 @@ describe('OverlayFS', () => {
15
16
 
16
17
  beforeEach(() => {
17
18
  workerFarm = new WorkerFarm({
18
- workerPath: require.resolve('@atlaspack/core/worker'),
19
+ workerPath: WORKER_PATH,
19
20
  });
20
21
  underlayFS = new MemoryFS(workerFarm);
21
22
  fs = new OverlayFS(workerFarm, underlayFS);