babel-preset-react-app 9.0.0 → 9.0.1

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.
Files changed (2) hide show
  1. package/dependencies.js +1 -1
  2. package/package.json +14 -15
package/dependencies.js CHANGED
@@ -142,7 +142,7 @@ module.exports = function(api, opts) {
142
142
  require('@babel/plugin-syntax-dynamic-import').default,
143
143
  isEnvTest &&
144
144
  // Transform dynamic import to require
145
- require('babel-plugin-transform-dynamic-import').default,
145
+ require('babel-plugin-dynamic-import-node'),
146
146
  ].filter(Boolean),
147
147
  };
148
148
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "babel-preset-react-app",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "Babel preset used by Create React App",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,23 +21,22 @@
21
21
  "test.js"
22
22
  ],
23
23
  "dependencies": {
24
- "@babel/core": "7.4.3",
25
- "@babel/plugin-proposal-class-properties": "7.4.0",
26
- "@babel/plugin-proposal-decorators": "7.4.0",
27
- "@babel/plugin-proposal-object-rest-spread": "7.4.3",
24
+ "@babel/core": "7.5.5",
25
+ "@babel/plugin-proposal-class-properties": "7.5.5",
26
+ "@babel/plugin-proposal-decorators": "7.4.4",
27
+ "@babel/plugin-proposal-object-rest-spread": "7.5.5",
28
28
  "@babel/plugin-syntax-dynamic-import": "7.2.0",
29
- "@babel/plugin-transform-classes": "7.4.3",
30
- "@babel/plugin-transform-destructuring": "7.4.3",
31
- "@babel/plugin-transform-flow-strip-types": "7.4.0",
32
- "@babel/plugin-transform-react-constant-elements": "7.2.0",
29
+ "@babel/plugin-transform-destructuring": "7.5.0",
30
+ "@babel/plugin-transform-flow-strip-types": "7.4.4",
33
31
  "@babel/plugin-transform-react-display-name": "7.2.0",
34
- "@babel/plugin-transform-runtime": "7.4.3",
35
- "@babel/preset-env": "7.4.3",
32
+ "@babel/plugin-transform-runtime": "7.5.5",
33
+ "@babel/preset-env": "7.5.5",
36
34
  "@babel/preset-react": "7.0.0",
37
35
  "@babel/preset-typescript": "7.3.3",
38
- "@babel/runtime": "7.4.3",
39
- "babel-plugin-dynamic-import-node": "2.2.0",
40
- "babel-plugin-macros": "2.5.1",
36
+ "@babel/runtime": "7.5.5",
37
+ "babel-plugin-dynamic-import-node": "2.3.0",
38
+ "babel-plugin-macros": "2.6.1",
41
39
  "babel-plugin-transform-react-remove-prop-types": "0.4.24"
42
- }
40
+ },
41
+ "gitHead": "a78ff74309430e15cd8b71b5bffe3d383679fee0"
43
42
  }