@atlaspack/transformer-js 3.3.8-noselfbuild-342bd6c75.0 → 3.3.8-noselfbuild-71fe9e998.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/lib/JSTransformer.js +1 -0
- package/package.json +8 -8
- package/src/JSTransformer.js +1 -0
package/lib/JSTransformer.js
CHANGED
|
@@ -386,6 +386,7 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
386
386
|
inline_constants: config.inlineConstants,
|
|
387
387
|
conditional_bundling: options.featureFlags.conditionalBundlingApi,
|
|
388
388
|
hmr_improvements: options.featureFlags.hmrImprovements,
|
|
389
|
+
computed_properties_fix: options.featureFlags.unusedComputedPropertyFix,
|
|
389
390
|
magic_comments: Boolean(config === null || config === void 0 ? void 0 : config.magicComments),
|
|
390
391
|
callMacro: asset.isSource ? async (err, src, exportName, args, loc) => {
|
|
391
392
|
let mod;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/transformer-js",
|
|
3
|
-
"version": "3.3.8-noselfbuild-
|
|
3
|
+
"version": "3.3.8-noselfbuild-71fe9e998.0",
|
|
4
4
|
"license": "(MIT OR Apache-2.0)",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -22,12 +22,12 @@
|
|
|
22
22
|
"src"
|
|
23
23
|
],
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@atlaspack/diagnostic": "2.14.2-noselfbuild-
|
|
26
|
-
"@atlaspack/feature-flags": "2.18.5-noselfbuild-
|
|
27
|
-
"@atlaspack/plugin": "2.14.18-noselfbuild-
|
|
28
|
-
"@atlaspack/rust": "3.4.1-noselfbuild-
|
|
29
|
-
"@atlaspack/utils": "2.16.2-noselfbuild-
|
|
30
|
-
"@atlaspack/workers": "2.14.18-noselfbuild-
|
|
25
|
+
"@atlaspack/diagnostic": "2.14.2-noselfbuild-71fe9e998.0",
|
|
26
|
+
"@atlaspack/feature-flags": "2.18.5-noselfbuild-71fe9e998.0",
|
|
27
|
+
"@atlaspack/plugin": "2.14.18-noselfbuild-71fe9e998.0",
|
|
28
|
+
"@atlaspack/rust": "3.4.1-noselfbuild-71fe9e998.0",
|
|
29
|
+
"@atlaspack/utils": "2.16.2-noselfbuild-71fe9e998.0",
|
|
30
|
+
"@atlaspack/workers": "2.14.18-noselfbuild-71fe9e998.0",
|
|
31
31
|
"@parcel/source-map": "^2.1.1",
|
|
32
32
|
"@swc/helpers": "^0.5.15",
|
|
33
33
|
"browserslist": "^4.6.6",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"@atlaspack/core": "^2.13.1"
|
|
40
40
|
},
|
|
41
41
|
"type": "commonjs",
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "71fe9e998256a417234fd5f388a7428aa0d6fd60"
|
|
43
43
|
}
|
package/src/JSTransformer.js
CHANGED
|
@@ -477,6 +477,7 @@ export default (new Transformer({
|
|
|
477
477
|
inline_constants: config.inlineConstants,
|
|
478
478
|
conditional_bundling: options.featureFlags.conditionalBundlingApi,
|
|
479
479
|
hmr_improvements: options.featureFlags.hmrImprovements,
|
|
480
|
+
computed_properties_fix: options.featureFlags.unusedComputedPropertyFix,
|
|
480
481
|
magic_comments: Boolean(config?.magicComments),
|
|
481
482
|
callMacro: asset.isSource
|
|
482
483
|
? async (err, src, exportName, args, loc) => {
|