@atlaspack/core 2.14.1-dev.138 → 2.14.1-dev.142

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.
@@ -81,7 +81,8 @@ class AtlaspackV3 {
81
81
  threads,
82
82
  options: {
83
83
  ...options,
84
- jsPaths: getJsPaths()
84
+ jsPaths: getJsPaths(),
85
+ useBuiltinConfigs: (0, _isSuperPackage.isSuperPackage)()
85
86
  },
86
87
  napiWorkerPool
87
88
  }, lmdb);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.14.1-dev.138+7df3f2cee",
3
+ "version": "2.14.1-dev.142+529a21a40",
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.138+7df3f2cee",
24
- "@atlaspack/cache": "2.13.3-dev.138+7df3f2cee",
25
- "@atlaspack/diagnostic": "2.14.1-dev.138+7df3f2cee",
26
- "@atlaspack/events": "2.14.1-dev.138+7df3f2cee",
27
- "@atlaspack/feature-flags": "2.14.1-dev.138+7df3f2cee",
28
- "@atlaspack/fs": "2.14.1-dev.138+7df3f2cee",
29
- "@atlaspack/graph": "3.4.1-dev.138+7df3f2cee",
30
- "@atlaspack/logger": "2.14.1-dev.138+7df3f2cee",
31
- "@atlaspack/package-manager": "2.14.1-dev.138+7df3f2cee",
32
- "@atlaspack/plugin": "2.14.1-dev.138+7df3f2cee",
33
- "@atlaspack/profiler": "2.14.1-dev.138+7df3f2cee",
34
- "@atlaspack/rust": "3.0.1-dev.138+7df3f2cee",
35
- "@atlaspack/types": "2.14.1-dev.138+7df3f2cee",
36
- "@atlaspack/utils": "2.14.1-dev.138+7df3f2cee",
37
- "@atlaspack/workers": "2.14.1-dev.138+7df3f2cee",
23
+ "@atlaspack/build-cache": "2.13.3-dev.142+529a21a40",
24
+ "@atlaspack/cache": "2.13.3-dev.142+529a21a40",
25
+ "@atlaspack/diagnostic": "2.14.1-dev.142+529a21a40",
26
+ "@atlaspack/events": "2.14.1-dev.142+529a21a40",
27
+ "@atlaspack/feature-flags": "2.14.1-dev.142+529a21a40",
28
+ "@atlaspack/fs": "2.14.1-dev.142+529a21a40",
29
+ "@atlaspack/graph": "3.4.1-dev.142+529a21a40",
30
+ "@atlaspack/logger": "2.14.1-dev.142+529a21a40",
31
+ "@atlaspack/package-manager": "2.14.1-dev.142+529a21a40",
32
+ "@atlaspack/plugin": "2.14.1-dev.142+529a21a40",
33
+ "@atlaspack/profiler": "2.14.1-dev.142+529a21a40",
34
+ "@atlaspack/rust": "3.0.1-dev.142+529a21a40",
35
+ "@atlaspack/types": "2.14.1-dev.142+529a21a40",
36
+ "@atlaspack/utils": "2.14.1-dev.142+529a21a40",
37
+ "@atlaspack/workers": "2.14.1-dev.142+529a21a40",
38
38
  "@mischnic/json-sourcemap": "^0.1.0",
39
39
  "@parcel/source-map": "^2.1.1",
40
40
  "base-x": "^3.0.8",
@@ -70,5 +70,5 @@
70
70
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
71
71
  },
72
72
  "type": "commonjs",
73
- "gitHead": "7df3f2ceef899e67a62d99a53652584695291051"
73
+ "gitHead": "529a21a40d655a8a92dbc8a4a91e0992d0e9e60e"
74
74
  }
@@ -29,6 +29,7 @@ export type AtlaspackV3Options = {|
29
29
  AtlaspackNapiOptions['options'],
30
30
  {|
31
31
  jsPaths: AtlaspackNapiOptions['options']['jsPaths'],
32
+ useBuiltinConfigs: AtlaspackNapiOptions['options']['useBuiltinConfigs'],
32
33
  |},
33
34
  >,
34
35
  |};
@@ -101,6 +102,7 @@ export class AtlaspackV3 {
101
102
  options: {
102
103
  ...options,
103
104
  jsPaths: getJsPaths(),
105
+ useBuiltinConfigs: isSuperPackage(),
104
106
  },
105
107
  napiWorkerPool,
106
108
  },