@atlaspack/core 2.18.7-typescript-de860656a.0 → 2.18.7-typescript-8a6ec6c8b.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.
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
 
3
- if (process.env.ATLASPACK_BUILD_ENV !== 'production' || process.env.ATLASPACK_SELF_BUILD) {
3
+ if (process.env.ATLASPACK_SOURCES === 'true' || process.env.ATLASPACK_BUILD_ENV === 'test' || process.env.ATLASPACK_SELF_BUILD) {
4
4
  require('@atlaspack/babel-register');
5
5
  }
6
6
  require('./worker');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.18.7-typescript-de860656a.0",
3
+ "version": "2.18.7-typescript-8a6ec6c8b.0",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -21,21 +21,21 @@
21
21
  "check-ts": "tsc --noEmit index.d.ts"
22
22
  },
23
23
  "dependencies": {
24
- "@atlaspack/build-cache": "2.13.4-typescript-de860656a.0",
25
- "@atlaspack/cache": "3.2.11-typescript-de860656a.0",
26
- "@atlaspack/diagnostic": "2.14.2-typescript-de860656a.0",
27
- "@atlaspack/events": "2.14.2-typescript-de860656a.0",
28
- "@atlaspack/feature-flags": "2.18.4-typescript-de860656a.0",
29
- "@atlaspack/fs": "2.15.11-typescript-de860656a.0",
30
- "@atlaspack/graph": "3.5.6-typescript-de860656a.0",
31
- "@atlaspack/logger": "2.14.12-typescript-de860656a.0",
32
- "@atlaspack/package-manager": "2.14.16-typescript-de860656a.0",
33
- "@atlaspack/plugin": "2.14.16-typescript-de860656a.0",
34
- "@atlaspack/profiler": "2.14.14-typescript-de860656a.0",
35
- "@atlaspack/rust": "3.3.6-typescript-de860656a.0",
36
- "@atlaspack/types": "2.15.6-typescript-de860656a.0",
37
- "@atlaspack/utils": "2.15.4-typescript-de860656a.0",
38
- "@atlaspack/workers": "2.14.16-typescript-de860656a.0",
24
+ "@atlaspack/build-cache": "2.13.4-typescript-8a6ec6c8b.0",
25
+ "@atlaspack/cache": "3.2.11-typescript-8a6ec6c8b.0",
26
+ "@atlaspack/diagnostic": "2.14.2-typescript-8a6ec6c8b.0",
27
+ "@atlaspack/events": "2.14.2-typescript-8a6ec6c8b.0",
28
+ "@atlaspack/feature-flags": "2.18.4-typescript-8a6ec6c8b.0",
29
+ "@atlaspack/fs": "2.15.11-typescript-8a6ec6c8b.0",
30
+ "@atlaspack/graph": "3.5.6-typescript-8a6ec6c8b.0",
31
+ "@atlaspack/logger": "2.14.12-typescript-8a6ec6c8b.0",
32
+ "@atlaspack/package-manager": "2.14.16-typescript-8a6ec6c8b.0",
33
+ "@atlaspack/plugin": "2.14.16-typescript-8a6ec6c8b.0",
34
+ "@atlaspack/profiler": "2.14.14-typescript-8a6ec6c8b.0",
35
+ "@atlaspack/rust": "3.3.6-typescript-8a6ec6c8b.0",
36
+ "@atlaspack/types": "2.15.6-typescript-8a6ec6c8b.0",
37
+ "@atlaspack/utils": "2.15.4-typescript-8a6ec6c8b.0",
38
+ "@atlaspack/workers": "2.14.16-typescript-8a6ec6c8b.0",
39
39
  "@mischnic/json-sourcemap": "^0.1.0",
40
40
  "@parcel/source-map": "^2.1.1",
41
41
  "base-x": "^3.0.8",
@@ -49,7 +49,7 @@
49
49
  "semver": "^7.5.2"
50
50
  },
51
51
  "devDependencies": {
52
- "@atlaspack/babel-register": "2.14.2-typescript-de860656a.0",
52
+ "@atlaspack/babel-register": "2.14.2-typescript-8a6ec6c8b.0",
53
53
  "@types/node": ">= 18",
54
54
  "graphviz": "^0.0.9",
55
55
  "jest-diff": "*",
@@ -60,5 +60,5 @@
60
60
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
61
61
  },
62
62
  "type": "commonjs",
63
- "gitHead": "de860656a3c821c6f8043b05fa7699289992edbb"
63
+ "gitHead": "8a6ec6c8bed0bbf5461f5b0f899577a576906051"
64
64
  }
@@ -1,5 +1,6 @@
1
1
  if (
2
- process.env.ATLASPACK_BUILD_ENV !== 'production' ||
2
+ process.env.ATLASPACK_SOURCES === 'true' ||
3
+ process.env.ATLASPACK_BUILD_ENV === 'test' ||
3
4
  process.env.ATLASPACK_SELF_BUILD
4
5
  ) {
5
6
  require('@atlaspack/babel-register');