@atlaspack/package-manager 2.14.18-typescript-d6e6d169c.0 → 2.14.18-typescript-6de04fbae.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/package-manager",
3
- "version": "2.14.18-typescript-d6e6d169c.0",
3
+ "version": "2.14.18-typescript-6de04fbae.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-typescript-d6e6d169c.0",
43
- "@atlaspack/diagnostic": "2.14.2-typescript-d6e6d169c.0",
44
- "@atlaspack/fs": "2.15.13-typescript-d6e6d169c.0",
45
- "@atlaspack/logger": "2.14.13-typescript-d6e6d169c.0",
46
- "@atlaspack/node-resolver-core": "3.5.18-typescript-d6e6d169c.0",
47
- "@atlaspack/types": "2.15.8-typescript-d6e6d169c.0",
48
- "@atlaspack/utils": "2.16.2-typescript-d6e6d169c.0",
49
- "@atlaspack/workers": "2.14.18-typescript-d6e6d169c.0",
42
+ "@atlaspack/build-cache": "2.13.4-typescript-6de04fbae.0",
43
+ "@atlaspack/diagnostic": "2.14.2-typescript-6de04fbae.0",
44
+ "@atlaspack/fs": "2.15.13-typescript-6de04fbae.0",
45
+ "@atlaspack/logger": "2.14.13-typescript-6de04fbae.0",
46
+ "@atlaspack/node-resolver-core": "3.5.18-typescript-6de04fbae.0",
47
+ "@atlaspack/types": "2.15.8-typescript-6de04fbae.0",
48
+ "@atlaspack/utils": "2.16.2-typescript-6de04fbae.0",
49
+ "@atlaspack/workers": "2.14.18-typescript-6de04fbae.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": "d6e6d169cb16a0bbc98d7743646a7097b82c7fe2"
66
+ "gitHead": "6de04fbaeccfba1e7832c737f6318cbd603fc74d"
67
67
  }
@@ -41,14 +41,10 @@ import {transformSync} from '@swc/core';
41
41
  // Package.json fields. Must match package_json.rs.
42
42
  const MAIN = 1 << 0;
43
43
  const SOURCE = 1 << 2;
44
- const ENTRIES =
45
- process.env.ATLASPACK_REGISTER_USE_LIB === 'true'
46
- ? MAIN
47
- : MAIN |
48
- (process.env.ATLASPACK_BUILD_ENV !== 'production' ||
49
- process.env.ATLASPACK_SELF_BUILD
50
- ? SOURCE
51
- : 0);
44
+ let ENTRIES = MAIN;
45
+ if (process.env.ATLASPACK_REGISTER_USE_SRC === 'true') {
46
+ ENTRIES |= SOURCE;
47
+ }
52
48
 
53
49
  const NODE_MODULES = `${path.sep}node_modules${path.sep}`;
54
50