@atlaspack/core 2.14.1-dev.47 → 2.14.1-dev.49
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 +17 -17
- package/test/Environment.test.js +5 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/core",
|
|
3
|
-
"version": "2.14.1-dev.
|
|
3
|
+
"version": "2.14.1-dev.49+276dd16e1",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -20,21 +20,21 @@
|
|
|
20
20
|
"check-ts": "tsc --noEmit index.d.ts"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@atlaspack/build-cache": "2.13.3-dev.
|
|
24
|
-
"@atlaspack/cache": "2.13.3-dev.
|
|
25
|
-
"@atlaspack/diagnostic": "2.14.1-dev.
|
|
26
|
-
"@atlaspack/events": "2.14.1-dev.
|
|
27
|
-
"@atlaspack/feature-flags": "2.14.1-dev.
|
|
28
|
-
"@atlaspack/fs": "2.14.1-dev.
|
|
29
|
-
"@atlaspack/graph": "3.4.1-dev.
|
|
30
|
-
"@atlaspack/logger": "2.14.1-dev.
|
|
31
|
-
"@atlaspack/package-manager": "2.14.1-dev.
|
|
32
|
-
"@atlaspack/plugin": "2.14.1-dev.
|
|
33
|
-
"@atlaspack/profiler": "2.14.1-dev.
|
|
34
|
-
"@atlaspack/rust": "3.0.1-dev.
|
|
35
|
-
"@atlaspack/types": "2.14.1-dev.
|
|
36
|
-
"@atlaspack/utils": "2.14.1-dev.
|
|
37
|
-
"@atlaspack/workers": "2.14.1-dev.
|
|
23
|
+
"@atlaspack/build-cache": "2.13.3-dev.49+276dd16e1",
|
|
24
|
+
"@atlaspack/cache": "2.13.3-dev.49+276dd16e1",
|
|
25
|
+
"@atlaspack/diagnostic": "2.14.1-dev.49+276dd16e1",
|
|
26
|
+
"@atlaspack/events": "2.14.1-dev.49+276dd16e1",
|
|
27
|
+
"@atlaspack/feature-flags": "2.14.1-dev.49+276dd16e1",
|
|
28
|
+
"@atlaspack/fs": "2.14.1-dev.49+276dd16e1",
|
|
29
|
+
"@atlaspack/graph": "3.4.1-dev.49+276dd16e1",
|
|
30
|
+
"@atlaspack/logger": "2.14.1-dev.49+276dd16e1",
|
|
31
|
+
"@atlaspack/package-manager": "2.14.1-dev.49+276dd16e1",
|
|
32
|
+
"@atlaspack/plugin": "2.14.1-dev.49+276dd16e1",
|
|
33
|
+
"@atlaspack/profiler": "2.14.1-dev.49+276dd16e1",
|
|
34
|
+
"@atlaspack/rust": "3.0.1-dev.49+276dd16e1",
|
|
35
|
+
"@atlaspack/types": "2.14.1-dev.49+276dd16e1",
|
|
36
|
+
"@atlaspack/utils": "2.14.1-dev.49+276dd16e1",
|
|
37
|
+
"@atlaspack/workers": "2.14.1-dev.49+276dd16e1",
|
|
38
38
|
"@mischnic/json-sourcemap": "^0.1.0",
|
|
39
39
|
"@parcel/source-map": "^2.1.1",
|
|
40
40
|
"base-x": "^3.0.8",
|
|
@@ -67,5 +67,5 @@
|
|
|
67
67
|
"./src/serializerCore.js": "./src/serializerCore.browser.js"
|
|
68
68
|
},
|
|
69
69
|
"type": "commonjs",
|
|
70
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "276dd16e11d5c0d0545a431e4bf793e46fd21ab5"
|
|
71
71
|
}
|
package/test/Environment.test.js
CHANGED
|
@@ -108,7 +108,11 @@ describe('Environment', () => {
|
|
|
108
108
|
|
|
109
109
|
describe('createEnvironment', function () {
|
|
110
110
|
it('returns a stable hash', () => {
|
|
111
|
-
|
|
111
|
+
try {
|
|
112
|
+
initializeMonitoring();
|
|
113
|
+
} catch (_err) {
|
|
114
|
+
/* ignore */
|
|
115
|
+
}
|
|
112
116
|
const environment = createEnvironment({});
|
|
113
117
|
expect(environment.id).toEqual('d821e85f6b50315e');
|
|
114
118
|
});
|