@atlaspack/package-manager 2.14.18-typescript-d6e6d169c.0 → 2.14.18-unified-f165f7d09.0
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/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/package.json +10 -10
- package/test/NodePackageManager.test.js +0 -4
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@atlaspack/package-manager",
|
3
|
-
"version": "2.14.18-
|
3
|
+
"version": "2.14.18-unified-f165f7d09.0",
|
4
4
|
"description": "Blazing fast, zero configuration web application bundler",
|
5
5
|
"license": "(MIT OR Apache-2.0)",
|
6
6
|
"publishConfig": {
|
@@ -39,14 +39,14 @@
|
|
39
39
|
}
|
40
40
|
},
|
41
41
|
"dependencies": {
|
42
|
-
"@atlaspack/build-cache": "2.13.4-
|
43
|
-
"@atlaspack/diagnostic": "2.14.2-
|
44
|
-
"@atlaspack/fs": "2.15.13-
|
45
|
-
"@atlaspack/logger": "2.14.13-
|
46
|
-
"@atlaspack/node-resolver-core": "3.5.18-
|
47
|
-
"@atlaspack/types": "2.15.8-
|
48
|
-
"@atlaspack/utils": "2.16.2-
|
49
|
-
"@atlaspack/workers": "2.14.18-
|
42
|
+
"@atlaspack/build-cache": "2.13.4-unified-f165f7d09.0",
|
43
|
+
"@atlaspack/diagnostic": "2.14.2-unified-f165f7d09.0",
|
44
|
+
"@atlaspack/fs": "2.15.13-unified-f165f7d09.0",
|
45
|
+
"@atlaspack/logger": "2.14.13-unified-f165f7d09.0",
|
46
|
+
"@atlaspack/node-resolver-core": "3.5.18-unified-f165f7d09.0",
|
47
|
+
"@atlaspack/types": "2.15.8-unified-f165f7d09.0",
|
48
|
+
"@atlaspack/utils": "2.16.2-unified-f165f7d09.0",
|
49
|
+
"@atlaspack/workers": "2.14.18-unified-f165f7d09.0",
|
50
50
|
"@swc/core": "^1.10.0",
|
51
51
|
"semver": "^7.5.2"
|
52
52
|
},
|
@@ -63,5 +63,5 @@
|
|
63
63
|
"./src/Yarn.js": false
|
64
64
|
},
|
65
65
|
"type": "commonjs",
|
66
|
-
"gitHead": "
|
66
|
+
"gitHead": "f165f7d09a7970afa669133971ceb2702726c23d"
|
67
67
|
}
|
@@ -12,7 +12,6 @@ import {WORKER_PATH} from '@atlaspack/core';
|
|
12
12
|
import {MockPackageInstaller, NodePackageManager} from '../src';
|
13
13
|
|
14
14
|
const FIXTURES_DIR = path.join(__dirname, 'fixtures');
|
15
|
-
const ROOT_DIR = path.normalize(path.join(__dirname, '..', '..', '..', '..'));
|
16
15
|
|
17
16
|
function normalize(res) {
|
18
17
|
return {
|
@@ -77,7 +76,6 @@ describe('NodePackageManager', function () {
|
|
77
76
|
type: 1,
|
78
77
|
invalidateOnFileChange: new Set([
|
79
78
|
path.join(FIXTURES_DIR, 'has-foo/node_modules/foo/package.json'),
|
80
|
-
path.join(ROOT_DIR, 'tsconfig.json'),
|
81
79
|
]),
|
82
80
|
invalidateOnFileCreate: [
|
83
81
|
{
|
@@ -132,7 +130,6 @@ describe('NodePackageManager', function () {
|
|
132
130
|
type: 1,
|
133
131
|
invalidateOnFileChange: new Set([
|
134
132
|
path.join(FIXTURES_DIR, 'has-foo/node_modules/a/package.json'),
|
135
|
-
path.join(ROOT_DIR, 'tsconfig.json'),
|
136
133
|
]),
|
137
134
|
invalidateOnFileCreate: [
|
138
135
|
{
|
@@ -305,7 +302,6 @@ describe('NodePackageManager', function () {
|
|
305
302
|
FIXTURES_DIR,
|
306
303
|
'has-foo/subpackage/node_modules/foo/package.json',
|
307
304
|
),
|
308
|
-
path.join(ROOT_DIR, 'tsconfig.json'),
|
309
305
|
]),
|
310
306
|
invalidateOnFileCreate: [
|
311
307
|
{
|