@kaliber/build 0.0.132-beta.0 → 0.0.132-beta.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/lib/build.js +8 -4
  2. package/package.json +6 -3
package/lib/build.js CHANGED
@@ -70,11 +70,15 @@ const babelLoader = {
70
70
  babelrc: false, // this needs to be false, any other value will cause .babelrc to interfere with these settings
71
71
  presets: ['@babel/preset-react'],
72
72
  plugins: [
73
- '@babel/syntax-dynamic-import',
74
- '@babel/syntax-optional-chaining',
75
- ['@babel/proposal-decorators', { legacy: true }],
76
- '@babel/proposal-class-properties',
73
+ '@babel/plugin-proposal-class-properties',
74
+ ['@babel/plugin-proposal-decorators', { legacy: true }],
75
+ '@babel/plugin-proposal-export-namespace-from',
77
76
  '@babel/plugin-proposal-nullish-coalescing-operator',
77
+ '@babel/plugin-proposal-object-rest-spread',
78
+ '@babel/plugin-proposal-optional-chaining',
79
+ '@babel/syntax-dynamic-import',
80
+ '@babel/plugin-transform-named-capturing-groups-regex',
81
+ '@babel/plugin-transform-template-literals',
78
82
  ]
79
83
  }
80
84
  }
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.0.132-beta.0",
2
+ "version": "0.0.132-beta.1",
3
3
  "name": "@kaliber/build",
4
4
  "description": "Zero configuration, opinionated webpack / react build setup",
5
5
  "scripts": {
@@ -19,10 +19,13 @@
19
19
  "@babel/eslint-parser": "^7.16.5",
20
20
  "@babel/plugin-proposal-class-properties": "^7.10.4",
21
21
  "@babel/plugin-proposal-decorators": "^7.10.5",
22
+ "@babel/plugin-proposal-export-namespace-from": "^7.18.9",
22
23
  "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
23
- "@babel/plugin-proposal-object-rest-spread": "^7.11.0",
24
+ "@babel/plugin-proposal-object-rest-spread": "^7.19.4",
25
+ "@babel/plugin-proposal-optional-chaining": "^7.18.9",
24
26
  "@babel/plugin-syntax-dynamic-import": "^7.8.3",
25
- "@babel/plugin-syntax-optional-chaining": "^7.8.3",
27
+ "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1",
28
+ "@babel/plugin-transform-template-literals": "^7.18.9",
26
29
  "@babel/preset-react": "^7.16.7",
27
30
  "@kaliber/config": "^0.0.8",
28
31
  "@kaliber/eslint-plugin": "*",