@atlaspack/core 2.13.2-canary.3650 → 2.13.2-canary.3652

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.13.2-canary.3650+7e2137791",
3
+ "version": "2.13.2-canary.3652+726b0b02f",
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.2-canary.3650+7e2137791",
24
- "@atlaspack/cache": "2.13.2-canary.3650+7e2137791",
25
- "@atlaspack/diagnostic": "2.13.2-canary.3650+7e2137791",
26
- "@atlaspack/events": "2.13.2-canary.3650+7e2137791",
27
- "@atlaspack/feature-flags": "2.13.2-canary.3650+7e2137791",
28
- "@atlaspack/fs": "2.13.2-canary.3650+7e2137791",
29
- "@atlaspack/graph": "3.3.2-canary.3650+7e2137791",
30
- "@atlaspack/logger": "2.13.2-canary.3650+7e2137791",
31
- "@atlaspack/package-manager": "2.13.2-canary.3650+7e2137791",
32
- "@atlaspack/plugin": "2.13.2-canary.3650+7e2137791",
33
- "@atlaspack/profiler": "2.13.2-canary.3650+7e2137791",
34
- "@atlaspack/rust": "2.13.2-canary.3650+7e2137791",
35
- "@atlaspack/types": "2.13.2-canary.3650+7e2137791",
36
- "@atlaspack/utils": "2.13.2-canary.3650+7e2137791",
37
- "@atlaspack/workers": "2.13.2-canary.3650+7e2137791",
23
+ "@atlaspack/build-cache": "2.13.2-canary.3652+726b0b02f",
24
+ "@atlaspack/cache": "2.13.2-canary.3652+726b0b02f",
25
+ "@atlaspack/diagnostic": "2.13.2-canary.3652+726b0b02f",
26
+ "@atlaspack/events": "2.13.2-canary.3652+726b0b02f",
27
+ "@atlaspack/feature-flags": "2.13.2-canary.3652+726b0b02f",
28
+ "@atlaspack/fs": "2.13.2-canary.3652+726b0b02f",
29
+ "@atlaspack/graph": "3.3.2-canary.3652+726b0b02f",
30
+ "@atlaspack/logger": "2.13.2-canary.3652+726b0b02f",
31
+ "@atlaspack/package-manager": "2.13.2-canary.3652+726b0b02f",
32
+ "@atlaspack/plugin": "2.13.2-canary.3652+726b0b02f",
33
+ "@atlaspack/profiler": "2.13.2-canary.3652+726b0b02f",
34
+ "@atlaspack/rust": "2.13.2-canary.3652+726b0b02f",
35
+ "@atlaspack/types": "2.13.2-canary.3652+726b0b02f",
36
+ "@atlaspack/utils": "2.13.2-canary.3652+726b0b02f",
37
+ "@atlaspack/workers": "2.13.2-canary.3652+726b0b02f",
38
38
  "@mischnic/json-sourcemap": "^0.1.0",
39
39
  "@parcel/source-map": "^2.1.1",
40
40
  "base-x": "^3.0.8",
@@ -66,5 +66,5 @@
66
66
  "browser": {
67
67
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
68
68
  },
69
- "gitHead": "7e21377914e8091d484f67cb11052a1efd2227e3"
69
+ "gitHead": "726b0b02f4ba47426dd38d809036517477b8b1cd"
70
70
  }
@@ -17,6 +17,7 @@ export type AtlaspackV3Options = {|
17
17
  * A reference to LMDB lite's rust object
18
18
  */
19
19
  lmdb: Lmdb,
20
+ featureFlags?: {[string]: string | boolean},
20
21
  ...AtlaspackNapiOptions['options'],
21
22
  |};
22
23