@atlaspack/core 2.16.2-canary.187 → 2.16.2-canary.189

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.
@@ -154,6 +154,7 @@ class MutableAssetSymbols {
154
154
  }
155
155
  } : undefined,
156
156
  isEsmExport: Boolean(meta === null || meta === void 0 ? void 0 : meta.isEsm),
157
+ isStaticBindingSafe: Boolean(meta === null || meta === void 0 ? void 0 : meta.isStaticBindingSafe),
157
158
  isWeak: false,
158
159
  selfReferenced: Boolean(meta === null || meta === void 0 ? void 0 : meta.selfReferenced)
159
160
  });
@@ -99,19 +99,16 @@ function getAssetGraph(serializedGraph) {
99
99
  let jsSymbol = {
100
100
  local: symbol.local ?? undefined,
101
101
  loc: symbol.loc ?? undefined,
102
- meta: undefined,
103
- isWeak: symbol.isWeak
102
+ isWeak: symbol.isWeak,
103
+ meta: {
104
+ isEsm: symbol.isEsmExport,
105
+ isStaticBindingSafe: symbol.isStaticBindingSafe
106
+ }
104
107
  };
105
108
  if (symbol.exported) {
106
109
  // @ts-expect-error TS2339
107
110
  jsSymbol.exported = symbol.exported;
108
111
  }
109
- if (symbol.isEsmExport) {
110
- // @ts-expect-error TS2322
111
- jsSymbol.meta = {
112
- isEsm: true
113
- };
114
- }
115
112
  return [exported, jsSymbol];
116
113
  }
117
114
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@atlaspack/core",
3
- "version": "2.16.2-canary.187+5a0363f10",
3
+ "version": "2.16.2-canary.189+0684997c1",
4
4
  "license": "(MIT OR Apache-2.0)",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -23,21 +23,21 @@
23
23
  "build:lib": "gulp build --gulpfile ../../../gulpfile.js --cwd ."
24
24
  },
25
25
  "dependencies": {
26
- "@atlaspack/build-cache": "2.13.3-canary.255+5a0363f10",
27
- "@atlaspack/cache": "3.1.1-canary.187+5a0363f10",
28
- "@atlaspack/diagnostic": "2.14.1-canary.255+5a0363f10",
29
- "@atlaspack/events": "2.14.1-canary.255+5a0363f10",
30
- "@atlaspack/feature-flags": "2.14.1-canary.255+5a0363f10",
31
- "@atlaspack/fs": "2.14.5-canary.187+5a0363f10",
32
- "@atlaspack/graph": "3.4.1-canary.255+5a0363f10",
33
- "@atlaspack/logger": "2.14.5-canary.187+5a0363f10",
34
- "@atlaspack/package-manager": "2.14.5-canary.187+5a0363f10",
35
- "@atlaspack/plugin": "2.14.5-canary.187+5a0363f10",
36
- "@atlaspack/profiler": "2.14.1-canary.255+5a0363f10",
37
- "@atlaspack/rust": "3.2.1-canary.187+5a0363f10",
38
- "@atlaspack/types": "2.14.5-canary.187+5a0363f10",
39
- "@atlaspack/utils": "2.14.5-canary.187+5a0363f10",
40
- "@atlaspack/workers": "2.14.5-canary.187+5a0363f10",
26
+ "@atlaspack/build-cache": "2.13.3-canary.257+0684997c1",
27
+ "@atlaspack/cache": "3.1.1-canary.189+0684997c1",
28
+ "@atlaspack/diagnostic": "2.14.1-canary.257+0684997c1",
29
+ "@atlaspack/events": "2.14.1-canary.257+0684997c1",
30
+ "@atlaspack/feature-flags": "2.14.1-canary.257+0684997c1",
31
+ "@atlaspack/fs": "2.14.5-canary.189+0684997c1",
32
+ "@atlaspack/graph": "3.4.1-canary.257+0684997c1",
33
+ "@atlaspack/logger": "2.14.5-canary.189+0684997c1",
34
+ "@atlaspack/package-manager": "2.14.5-canary.189+0684997c1",
35
+ "@atlaspack/plugin": "2.14.5-canary.189+0684997c1",
36
+ "@atlaspack/profiler": "2.14.1-canary.257+0684997c1",
37
+ "@atlaspack/rust": "3.2.1-canary.189+0684997c1",
38
+ "@atlaspack/types": "2.14.5-canary.189+0684997c1",
39
+ "@atlaspack/utils": "2.14.5-canary.189+0684997c1",
40
+ "@atlaspack/workers": "2.14.5-canary.189+0684997c1",
41
41
  "@mischnic/json-sourcemap": "^0.1.0",
42
42
  "@parcel/source-map": "^2.1.1",
43
43
  "base-x": "^3.0.8",
@@ -62,5 +62,5 @@
62
62
  "./src/serializerCore.js": "./src/serializerCore.browser.js"
63
63
  },
64
64
  "type": "commonjs",
65
- "gitHead": "5a0363f1086e81068959b87e92064bed5a11a9b4"
65
+ "gitHead": "0684997c127a6204af1376b36e556fddd1ba5557"
66
66
  }
@@ -170,6 +170,7 @@ export class MutableAssetSymbols implements IMutableAssetSymbols {
170
170
  }
171
171
  : undefined,
172
172
  isEsmExport: Boolean(meta?.isEsm),
173
+ isStaticBindingSafe: Boolean(meta?.isStaticBindingSafe),
173
174
  isWeak: false,
174
175
  selfReferenced: Boolean(meta?.selfReferenced),
175
176
  });
@@ -96,8 +96,11 @@ export function getAssetGraph(serializedGraph: any): {
96
96
  let jsSymbol = {
97
97
  local: symbol.local ?? undefined,
98
98
  loc: symbol.loc ?? undefined,
99
- meta: undefined,
100
99
  isWeak: symbol.isWeak,
100
+ meta: {
101
+ isEsm: symbol.isEsmExport,
102
+ isStaticBindingSafe: symbol.isStaticBindingSafe,
103
+ },
101
104
  };
102
105
 
103
106
  if (symbol.exported) {
@@ -105,13 +108,6 @@ export function getAssetGraph(serializedGraph: any): {
105
108
  jsSymbol.exported = symbol.exported;
106
109
  }
107
110
 
108
- if (symbol.isEsmExport) {
109
- // @ts-expect-error TS2322
110
- jsSymbol.meta = {
111
- isEsm: true,
112
- };
113
- }
114
-
115
111
  return [exported, jsSymbol];
116
112
  }
117
113