@commercetools-frontend/eslint-config-mc-app 21.0.0-rc.5 → 21.2.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 (3) hide show
  1. package/CHANGELOG.md +34 -0
  2. package/index.js +5 -1
  3. package/package.json +4 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,39 @@
1
1
  # @commercetools-frontend/eslint-config-mc-app
2
2
 
3
+ ## 21.2.1
4
+
5
+ ### Patch Changes
6
+
7
+ - [#2471](https://github.com/commercetools/merchant-center-application-kit/pull/2471) [`dc02733d`](https://github.com/commercetools/merchant-center-application-kit/commit/dc02733dfe14ce864e6efd36c6746892170ade3d) Thanks [@renovate](https://github.com/apps/renovate)! - Update dependencies
8
+
9
+ ## 21.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - [#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)! - Upgrade to ESLint v8. Make sure you upgrade the `eslint` dependency to v8 as well and fix possible linting errors.
14
+
15
+ ### Patch Changes
16
+
17
+ - [#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.
18
+
19
+ * [#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
20
+
21
+ - [#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)! - Fix config setup
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
+ * Updated dependencies [[`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867), [`eb8f5b2c`](https://github.com/commercetools/merchant-center-application-kit/commit/eb8f5b2c885a4c3ffc7857a61e50508b429bf964), [`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867), [`bb1f7d75`](https://github.com/commercetools/merchant-center-application-kit/commit/bb1f7d75ff54f7fef05c4d2b3328b88e400b4867)]:
26
+ - @commercetools-frontend/babel-preset-mc-app@21.0.0
27
+
28
+ ## 21.0.0-rc.7
29
+
30
+ ### Patch Changes
31
+
32
+ - [#2430](https://github.com/commercetools/merchant-center-application-kit/pull/2430) [`71171d65`](https://github.com/commercetools/merchant-center-application-kit/commit/71171d65c276801d499f9b39923674114dff360c) Thanks [@emmenko](https://github.com/emmenko)! - ESLint config depends on Babel preset. Add pre-configured entry points for Babel preset for different environments.
33
+
34
+ - Updated dependencies [[`71171d65`](https://github.com/commercetools/merchant-center-application-kit/commit/71171d65c276801d499f9b39923674114dff360c)]:
35
+ - @commercetools-frontend/babel-preset-mc-app@21.0.0-rc.7
36
+
3
37
  ## 21.0.0-rc.5
4
38
 
5
39
  ### Patch Changes
package/index.js CHANGED
@@ -10,7 +10,11 @@ const hasJsxRuntime = require('./helpers/has-jsx-runtime');
10
10
  module.exports = {
11
11
  parserOptions: {
12
12
  babelOptions: {
13
- presets: [require.resolve('@commercetools-frontend/babel-preset-mc-app')],
13
+ presets: [
14
+ require.resolve(
15
+ '@commercetools-frontend/babel-preset-mc-app/production'
16
+ ),
17
+ ],
14
18
  },
15
19
  },
16
20
  extends: [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@commercetools-frontend/eslint-config-mc-app",
3
- "version": "21.0.0-rc.5",
3
+ "version": "21.2.1",
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": {
@@ -15,6 +15,7 @@
15
15
  "access": "public"
16
16
  },
17
17
  "dependencies": {
18
+ "@commercetools-frontend/babel-preset-mc-app": "^21.0.0",
18
19
  "@rushstack/eslint-patch": "^1.1.0",
19
20
  "@typescript-eslint/eslint-plugin": "^5.10.0",
20
21
  "@typescript-eslint/parser": "^5.10.0",
@@ -33,10 +34,10 @@
33
34
  "eslint-plugin-testing-library": "^5.0.4"
34
35
  },
35
36
  "peerDependencies": {
36
- "eslint": ">=8.0.0"
37
+ "eslint": "8.x"
37
38
  },
38
39
  "devDependencies": {
39
- "eslint": "8.7.0"
40
+ "eslint": "8.11.0"
40
41
  },
41
42
  "engines": {
42
43
  "node": ">=14"