This repository was archived by the owner on Dec 30, 2021. It is now read-only.
File tree 4 files changed +66
-4
lines changed
4 files changed +66
-4
lines changed Original file line number Diff line number Diff line change 8
8
"use strict" ;
9
9
10
10
const babelJest = require ( "babel-jest" ) ;
11
+ const importMetaBabelPlugin = require ( "./importMetaBabelPlugin" ) ;
11
12
12
13
module . exports = babelJest . createTransformer ( {
13
14
presets : [
14
15
"babel-preset-react-app" ,
15
16
"@babel/preset-react" ,
16
17
"@babel/preset-typescript" ,
17
18
] ,
18
- plugins : [
19
- [ "@babel/plugin-syntax-import-meta" ] ,
20
- ] ,
19
+ plugins : [ [ importMetaBabelPlugin ] ] ,
21
20
} ) ;
Original file line number Diff line number Diff line change
1
+ const template = require ( "@babel/template" ) . default ;
2
+
3
+ const PUBLIC_ENV_REGEX = / ^ S N O W P A C K _ P U B L I C _ / ;
4
+ function generateEnvObject ( mode ) {
5
+ const envObject = { ...process . env } ;
6
+ for ( const env of Object . keys ( envObject ) ) {
7
+ if ( ! PUBLIC_ENV_REGEX . test ( env ) ) {
8
+ delete envObject [ env ] ;
9
+ }
10
+ }
11
+ envObject . MODE = mode ;
12
+ envObject . NODE_ENV = mode ;
13
+ return envObject ;
14
+ }
15
+
16
+ /**
17
+ * Add import.meta.env support
18
+ * Note: import.meta.url is not supported at this time
19
+ */
20
+ module . exports = function ( ) {
21
+ const ast = template . ast ( `
22
+ ({env: ${ JSON . stringify ( generateEnvObject ( "test" ) ) } })
23
+ ` ) ;
24
+ return {
25
+ visitor : {
26
+ MetaProperty ( path , state ) {
27
+ path . replaceWith ( ast ) ;
28
+ } ,
29
+ } ,
30
+ } ;
31
+ } ;
Original file line number Diff line number Diff line change 8
8
"use strict" ;
9
9
10
10
const babelJest = require ( "babel-jest" ) ;
11
+ const importMetaBabelPlugin = require ( "./importMetaBabelPlugin" ) ;
11
12
12
13
module . exports = babelJest . createTransformer ( {
13
14
presets : [
@@ -20,5 +21,5 @@ module.exports = babelJest.createTransformer({
20
21
} ,
21
22
] ,
22
23
] ,
23
- plugins : [ ] ,
24
+ plugins : [ [ importMetaBabelPlugin ] ] ,
24
25
} ) ;
Original file line number Diff line number Diff line change
1
+ const template = require ( "@babel/template" ) . default ;
2
+
3
+ const PUBLIC_ENV_REGEX = / ^ S N O W P A C K _ P U B L I C _ / ;
4
+ function generateEnvObject ( mode ) {
5
+ const envObject = { ...process . env } ;
6
+ for ( const env of Object . keys ( envObject ) ) {
7
+ if ( ! PUBLIC_ENV_REGEX . test ( env ) ) {
8
+ delete envObject [ env ] ;
9
+ }
10
+ }
11
+ envObject . MODE = mode ;
12
+ envObject . NODE_ENV = mode ;
13
+ return envObject ;
14
+ }
15
+
16
+ /**
17
+ * Add import.meta.env support
18
+ * Note: import.meta.url is not supported at this time
19
+ */
20
+ module . exports = function ( ) {
21
+ const ast = template . ast ( `
22
+ ({env: ${ JSON . stringify ( generateEnvObject ( "test" ) ) } })
23
+ ` ) ;
24
+ return {
25
+ visitor : {
26
+ MetaProperty ( path , state ) {
27
+ path . replaceWith ( ast ) ;
28
+ } ,
29
+ } ,
30
+ } ;
31
+ } ;
You can’t perform that action at this time.
0 commit comments