@atlaspack/transformer-js 3.3.6-dev-eae8c193d.0 → 3.3.6-typescript-de860656a.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 +6 -3
- package/package.json +8 -8
- package/src/JSTransformer.js +0 -1
package/lib/JSTransformer.js
CHANGED
|
@@ -313,6 +313,9 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
313
313
|
if (options.env.NODE_ENV != null) {
|
|
314
314
|
env.NODE_ENV = options.env.NODE_ENV;
|
|
315
315
|
}
|
|
316
|
+
if (process.env.ATLASPACK_BUILD_ENV === 'test') {
|
|
317
|
+
env.ATLASPACK_BUILD_ENV = 'test';
|
|
318
|
+
}
|
|
316
319
|
} else if (Array.isArray(config === null || config === void 0 ? void 0 : config.inlineEnvironment)) {
|
|
317
320
|
for (let match of (0, _utils().globMatch)(Object.keys(options.env), config.inlineEnvironment)) {
|
|
318
321
|
env[match] = String(options.env[match]);
|
|
@@ -383,7 +386,6 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
383
386
|
conditional_bundling: options.featureFlags.conditionalBundlingApi,
|
|
384
387
|
hmr_improvements: options.featureFlags.hmrImprovements,
|
|
385
388
|
magic_comments: Boolean(config === null || config === void 0 ? void 0 : config.magicComments),
|
|
386
|
-
secret_extra_prop: 'This came from JS',
|
|
387
389
|
callMacro: asset.isSource ? async (err, src, exportName, args, loc) => {
|
|
388
390
|
let mod;
|
|
389
391
|
try {
|
|
@@ -408,7 +410,7 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
408
410
|
}
|
|
409
411
|
try {
|
|
410
412
|
if (typeof mod[exportName] === 'function') {
|
|
411
|
-
|
|
413
|
+
let ctx = {
|
|
412
414
|
// Allows macros to emit additional assets to add as dependencies (e.g. css).
|
|
413
415
|
addAsset(a) {
|
|
414
416
|
let k = String(macroAssets.length);
|
|
@@ -467,7 +469,8 @@ var _default = exports.default = new (_plugin().Transformer)({
|
|
|
467
469
|
invalidateOnBuild() {
|
|
468
470
|
asset.invalidateOnBuild();
|
|
469
471
|
}
|
|
470
|
-
}
|
|
472
|
+
};
|
|
473
|
+
return mod[exportName].apply(ctx, args);
|
|
471
474
|
} else {
|
|
472
475
|
throw new Error(`"${exportName}" in "${src}" is not a function.`);
|
|
473
476
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@atlaspack/transformer-js",
|
|
3
|
-
"version": "3.3.6-
|
|
3
|
+
"version": "3.3.6-typescript-de860656a.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-
|
|
26
|
-
"@atlaspack/feature-flags": "2.18.4-
|
|
27
|
-
"@atlaspack/plugin": "2.14.16-
|
|
28
|
-
"@atlaspack/rust": "3.3.6-
|
|
29
|
-
"@atlaspack/utils": "2.15.4-
|
|
30
|
-
"@atlaspack/workers": "2.14.16-
|
|
25
|
+
"@atlaspack/diagnostic": "2.14.2-typescript-de860656a.0",
|
|
26
|
+
"@atlaspack/feature-flags": "2.18.4-typescript-de860656a.0",
|
|
27
|
+
"@atlaspack/plugin": "2.14.16-typescript-de860656a.0",
|
|
28
|
+
"@atlaspack/rust": "3.3.6-typescript-de860656a.0",
|
|
29
|
+
"@atlaspack/utils": "2.15.4-typescript-de860656a.0",
|
|
30
|
+
"@atlaspack/workers": "2.14.16-typescript-de860656a.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": "de860656a3c821c6f8043b05fa7699289992edbb"
|
|
43
43
|
}
|
package/src/JSTransformer.js
CHANGED
|
@@ -477,7 +477,6 @@ export default (new Transformer({
|
|
|
477
477
|
conditional_bundling: options.featureFlags.conditionalBundlingApi,
|
|
478
478
|
hmr_improvements: options.featureFlags.hmrImprovements,
|
|
479
479
|
magic_comments: Boolean(config?.magicComments),
|
|
480
|
-
secret_extra_prop: 'This came from JS',
|
|
481
480
|
callMacro: asset.isSource
|
|
482
481
|
? async (err, src, exportName, args, loc) => {
|
|
483
482
|
let mod;
|