@atlaspack/core 2.14.1-dev.42 → 2.14.1-dev.45

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/core",
3
- "version": "2.14.1-dev.42+508873ffe",
3
+ "version": "2.14.1-dev.45+821233261",
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.42+508873ffe",
24
- "@atlaspack/cache": "2.13.3-dev.42+508873ffe",
25
- "@atlaspack/diagnostic": "2.14.1-dev.42+508873ffe",
26
- "@atlaspack/events": "2.14.1-dev.42+508873ffe",
27
- "@atlaspack/feature-flags": "2.14.1-dev.42+508873ffe",
28
- "@atlaspack/fs": "2.14.1-dev.42+508873ffe",
29
- "@atlaspack/graph": "3.4.1-dev.42+508873ffe",
30
- "@atlaspack/logger": "2.14.1-dev.42+508873ffe",
31
- "@atlaspack/package-manager": "2.14.1-dev.42+508873ffe",
32
- "@atlaspack/plugin": "2.14.1-dev.42+508873ffe",
33
- "@atlaspack/profiler": "2.14.1-dev.42+508873ffe",
34
- "@atlaspack/rust": "3.0.1-dev.42+508873ffe",
35
- "@atlaspack/types": "2.14.1-dev.42+508873ffe",
36
- "@atlaspack/utils": "2.14.1-dev.42+508873ffe",
37
- "@atlaspack/workers": "2.14.1-dev.42+508873ffe",
23
+ "@atlaspack/build-cache": "2.13.3-dev.45+821233261",
24
+ "@atlaspack/cache": "2.13.3-dev.45+821233261",
25
+ "@atlaspack/diagnostic": "2.14.1-dev.45+821233261",
26
+ "@atlaspack/events": "2.14.1-dev.45+821233261",
27
+ "@atlaspack/feature-flags": "2.14.1-dev.45+821233261",
28
+ "@atlaspack/fs": "2.14.1-dev.45+821233261",
29
+ "@atlaspack/graph": "3.4.1-dev.45+821233261",
30
+ "@atlaspack/logger": "2.14.1-dev.45+821233261",
31
+ "@atlaspack/package-manager": "2.14.1-dev.45+821233261",
32
+ "@atlaspack/plugin": "2.14.1-dev.45+821233261",
33
+ "@atlaspack/profiler": "2.14.1-dev.45+821233261",
34
+ "@atlaspack/rust": "3.0.1-dev.45+821233261",
35
+ "@atlaspack/types": "2.14.1-dev.45+821233261",
36
+ "@atlaspack/utils": "2.14.1-dev.45+821233261",
37
+ "@atlaspack/workers": "2.14.1-dev.45+821233261",
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": "508873ffe351bf096888d0f24cb4995c450cdba6"
70
+ "gitHead": "8212332616265d22454c2e0f0dabe9ab84be927a"
71
71
  }
@@ -108,7 +108,11 @@ describe('Environment', () => {
108
108
 
109
109
  describe('createEnvironment', function () {
110
110
  it('returns a stable hash', () => {
111
- initializeMonitoring();
111
+ try {
112
+ initializeMonitoring();
113
+ } catch (_err) {
114
+ /* ignore */
115
+ }
112
116
  const environment = createEnvironment({});
113
117
  expect(environment.id).toEqual('d821e85f6b50315e');
114
118
  });