@commercetools-frontend/eslint-config-mc-app 22.2.1 → 22.3.0
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 +13 -0
- package/package.json +14 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @commercetools-frontend/eslint-config-mc-app
|
|
2
2
|
|
|
3
|
+
## 22.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#2976](https://github.com/commercetools/merchant-center-application-kit/pull/2976) [`9add8f46b`](https://github.com/commercetools/merchant-center-application-kit/commit/9add8f46b668fb95b2c966a087bfb00c807ab55e) Thanks [@emmenko](https://github.com/emmenko)! - We migrate from Yarn to Pnpm as the package manager for the App Kit repository. As a result of it there were several packages that didn't specify all the needed dependencies. This is fixed now.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- [#3061](https://github.com/commercetools/merchant-center-application-kit/pull/3061) [`448774957`](https://github.com/commercetools/merchant-center-application-kit/commit/44877495721371ae251e11f6b7d926344cfeae0b) Thanks [@renovate](https://github.com/apps/renovate)! - Update dependencies.
|
|
12
|
+
|
|
13
|
+
- Updated dependencies []:
|
|
14
|
+
- @commercetools-frontend/babel-preset-mc-app@22.3.0
|
|
15
|
+
|
|
3
16
|
## 22.2.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-frontend/eslint-config-mc-app",
|
|
3
|
-
"version": "22.
|
|
3
|
+
"version": "22.3.0",
|
|
4
4
|
"description": "ESLint config used by a Custom Application.",
|
|
5
5
|
"bugs": "https://github.com/commercetools/merchant-center-application-kit/issues",
|
|
6
6
|
"repository": {
|
|
@@ -9,7 +9,13 @@
|
|
|
9
9
|
"directory": "packages/eslint-config-mc-app"
|
|
10
10
|
},
|
|
11
11
|
"homepage": "https://docs.commercetools.com/custom-applications",
|
|
12
|
-
"keywords": [
|
|
12
|
+
"keywords": [
|
|
13
|
+
"javascript",
|
|
14
|
+
"frontend",
|
|
15
|
+
"react",
|
|
16
|
+
"toolkit",
|
|
17
|
+
"eslint"
|
|
18
|
+
],
|
|
13
19
|
"license": "MIT",
|
|
14
20
|
"publishConfig": {
|
|
15
21
|
"access": "public"
|
|
@@ -17,7 +23,7 @@
|
|
|
17
23
|
"dependencies": {
|
|
18
24
|
"@babel/core": "^7.20.12",
|
|
19
25
|
"@babel/eslint-parser": "^7.19.1",
|
|
20
|
-
"@commercetools-frontend/babel-preset-mc-app": "^22.
|
|
26
|
+
"@commercetools-frontend/babel-preset-mc-app": "^22.3.0",
|
|
21
27
|
"@rushstack/eslint-patch": "^1.2.0",
|
|
22
28
|
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
23
29
|
"@typescript-eslint/parser": "^5.52.0",
|
|
@@ -32,15 +38,17 @@
|
|
|
32
38
|
"eslint-plugin-prettier": "^4.2.1",
|
|
33
39
|
"eslint-plugin-react": "^7.32.2",
|
|
34
40
|
"eslint-plugin-react-hooks": "^4.6.0",
|
|
35
|
-
"eslint-plugin-testing-library": "^5.10.1"
|
|
41
|
+
"eslint-plugin-testing-library": "^5.10.1",
|
|
42
|
+
"prettier": "^2.8.4",
|
|
43
|
+
"typescript": "^5.0.4"
|
|
36
44
|
},
|
|
37
45
|
"peerDependencies": {
|
|
38
46
|
"eslint": "8.x"
|
|
39
47
|
},
|
|
40
48
|
"devDependencies": {
|
|
41
|
-
"eslint": "8.
|
|
49
|
+
"eslint": "8.40.0"
|
|
42
50
|
},
|
|
43
51
|
"engines": {
|
|
44
52
|
"node": "16.x || >=18.0.0"
|
|
45
53
|
}
|
|
46
|
-
}
|
|
54
|
+
}
|