@commercetools-frontend/babel-preset-mc-app 21.0.0-rc.7 → 21.3.2
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/CHANGELOG.md +24 -0
- package/create.js +1 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @commercetools-frontend/babel-preset-mc-app
|
|
2
2
|
|
|
3
|
+
## 21.3.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#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`
|
|
8
|
+
|
|
9
|
+
## 21.3.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#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
|
|
14
|
+
|
|
15
|
+
## 21.0.0
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#2430](https://github.com/commercetools/merchant-center-application-kit/pull/2430) [`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867) Thanks [@emmenko](https://github.com/emmenko)! - ESLint config depends on Babel preset. Add pre-configured entry points for Babel preset for different environments.
|
|
20
|
+
|
|
21
|
+
* [#2450](https://github.com/commercetools/merchant-center-application-kit/pull/2450) [`eb8f5b2c`](https://github.com/commercetools/merchant-center-application-kit/commit/eb8f5b2c885a4c3ffc7857a61e50508b429bf964) Thanks [@emmenko](https://github.com/emmenko)! - Update dependencies
|
|
22
|
+
|
|
23
|
+
- [#2430](https://github.com/commercetools/merchant-center-application-kit/pull/2430) [`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867) Thanks [@emmenko](https://github.com/emmenko)! - Use version range for Babel packages.
|
|
24
|
+
|
|
25
|
+
* [#2430](https://github.com/commercetools/merchant-center-application-kit/pull/2430) [`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867) Thanks [@emmenko](https://github.com/emmenko)! - Update babel dependencies
|
|
26
|
+
|
|
3
27
|
## 21.0.0-rc.7
|
|
4
28
|
|
|
5
29
|
### 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.
|
|
3
|
+
"version": "21.3.2",
|
|
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.
|
|
20
|
+
"@babel/core": "^7.17.8",
|
|
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.
|
|
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.
|
|
29
|
+
"@babel/plugin-transform-destructuring": "^7.17.7",
|
|
30
30
|
"@babel/plugin-transform-regenerator": "^7.16.7",
|
|
31
|
-
"@babel/plugin-transform-runtime": "^7.
|
|
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.
|
|
36
|
-
"@babel/runtime-corejs3": "^7.
|
|
35
|
+
"@babel/runtime": "^7.17.8",
|
|
36
|
+
"@babel/runtime-corejs3": "^7.17.8",
|
|
37
37
|
"@emotion/babel-plugin": "^11.7.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.
|
|
42
|
+
"babel-plugin-preval": "^5.1.0",
|
|
43
43
|
"babel-plugin-transform-react-remove-prop-types": "^0.4.24",
|
|
44
|
-
"core-js": "^3.
|
|
44
|
+
"core-js": "^3.21.1"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=14"
|