@commercetools-frontend/babel-preset-mc-app 21.0.0 → 21.3.4

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 (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/create.js +1 -1
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @commercetools-frontend/babel-preset-mc-app
2
2
 
3
+ ## 21.3.4
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2546](https://github.com/commercetools/merchant-center-application-kit/pull/2546) [`dc76e5a9`](https://github.com/commercetools/merchant-center-application-kit/commit/dc76e5a9a7f875dadf2ed5a11c48a1ddff7b431c) Thanks [@renovate](https://github.com/apps/renovate)! - Upgrade dependencies
8
+
9
+ ## 21.3.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [#2538](https://github.com/commercetools/merchant-center-application-kit/pull/2538) [`cc7c19d0`](https://github.com/commercetools/merchant-center-application-kit/commit/cc7c19d06e25002e0d35c072b6f9388dd61f87cb) Thanks [@emmenko](https://github.com/emmenko)! - Fix flaky resolution of `@emotion/babel-preset-css-prop`
14
+
15
+ ## 21.3.0
16
+
17
+ ### Patch Changes
18
+
19
+ - [#2520](https://github.com/commercetools/merchant-center-application-kit/pull/2520) [`6f3a2083`](https://github.com/commercetools/merchant-center-application-kit/commit/6f3a2083efac387e9a2994fbaaeb18914e739aa8) Thanks [@renovate](https://github.com/apps/renovate)! - Upgrade dependencies
20
+
3
21
  ## 21.0.0
4
22
 
5
23
  ### Patch Changes
package/create.js CHANGED
@@ -85,7 +85,7 @@ module.exports = function createBabePresetConfigForMcApp(api, opts = {}, env) {
85
85
  // use the `@emotion/babel-plugin` plugin.
86
86
  // https://emotion.sh/docs/@emotion/babel-preset-css-prop
87
87
  options.runtime !== 'automatic' && [
88
- '@emotion/babel-preset-css-prop',
88
+ require('@emotion/babel-preset-css-prop').default,
89
89
  {
90
90
  sourceMap: isEnvDevelopment,
91
91
  autoLabel: 'dev-only',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/babel-preset-mc-app",
3
- "version": "21.0.0",
3
+ "version": "21.3.4",
4
4
  "description": "Babel preset used by a MC application",
5
5
  "bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
6
6
  "repository": {
@@ -17,31 +17,31 @@
17
17
  "main": "./index.js",
18
18
  "module": "./index.js",
19
19
  "dependencies": {
20
- "@babel/core": "^7.16.10",
20
+ "@babel/core": "^7.17.9",
21
21
  "@babel/plugin-proposal-class-properties": "^7.16.7",
22
22
  "@babel/plugin-proposal-do-expressions": "^7.16.7",
23
23
  "@babel/plugin-proposal-export-default-from": "^7.16.7",
24
24
  "@babel/plugin-proposal-export-namespace-from": "^7.16.7",
25
25
  "@babel/plugin-proposal-logical-assignment-operators": "^7.16.7",
26
- "@babel/plugin-proposal-object-rest-spread": "^7.16.7",
26
+ "@babel/plugin-proposal-object-rest-spread": "^7.17.3",
27
27
  "@babel/plugin-proposal-private-methods": "^7.16.11",
28
28
  "@babel/plugin-proposal-private-property-in-object": "^7.16.7",
29
- "@babel/plugin-transform-destructuring": "^7.16.7",
30
- "@babel/plugin-transform-regenerator": "^7.16.7",
31
- "@babel/plugin-transform-runtime": "^7.16.10",
29
+ "@babel/plugin-transform-destructuring": "^7.17.7",
30
+ "@babel/plugin-transform-regenerator": "^7.17.9",
31
+ "@babel/plugin-transform-runtime": "^7.17.0",
32
32
  "@babel/preset-env": "^7.16.11",
33
33
  "@babel/preset-react": "^7.16.7",
34
34
  "@babel/preset-typescript": "^7.16.7",
35
- "@babel/runtime": "^7.16.7",
36
- "@babel/runtime-corejs3": "^7.16.8",
37
- "@emotion/babel-plugin": "^11.7.2",
35
+ "@babel/runtime": "^7.17.9",
36
+ "@babel/runtime-corejs3": "^7.17.9",
37
+ "@emotion/babel-plugin": "^11.9.2",
38
38
  "@emotion/babel-preset-css-prop": "^11.2.0",
39
39
  "babel-plugin-dev-expression": "^0.2.3",
40
40
  "babel-plugin-lodash": "^3.3.4",
41
41
  "babel-plugin-macros": "^3.1.0",
42
- "babel-plugin-preval": "^5.0.0",
42
+ "babel-plugin-preval": "^5.1.0",
43
43
  "babel-plugin-transform-react-remove-prop-types": "^0.4.24",
44
- "core-js": "^3.20.3"
44
+ "core-js": "^3.21.1"
45
45
  },
46
46
  "engines": {
47
47
  "node": ">=14"