@orchestrator-ui/eslint-config-custom 1.2.0 → 1.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.
@@ -1,10 +1,10 @@
1
1
 
2
- > @orchestrator-ui/eslint-config-custom@1.2.0 build
2
+ > @orchestrator-ui/eslint-config-custom@1.3.0 build
3
3
  > tsup index.js --format esm
4
4
 
5
5
  CLI Building entry: index.js
6
6
  CLI tsup v8.0.2
7
7
  CLI Target: node16
8
8
  ESM Build start
9
- ESM dist/index.mjs 1.31 KB
10
- ESM ⚡️ Build success in 16ms
9
+ ESM dist/index.mjs 1.32 KB
10
+ ESM ⚡️ Build success in 17ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @orchestrator-ui/eslint-config-custom
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - ef169fc: 1108 For the no-console rule allowing warnings too
8
+
9
+ ## 1.2.1
10
+
11
+ ### Patch Changes
12
+
13
+ - 09f3e09: Fixes markdown in README files
14
+
3
15
  ## 1.2.0
4
16
 
5
17
  ### Minor Changes
package/README.md CHANGED
@@ -4,6 +4,6 @@ Contains the eslint configuration used in the [Workflow orchestrator][1] fronten
4
4
 
5
5
  This package is created from the [https://github.com/workfloworchestrator/example-orchestrator-ui/][2] repository and it's source can be found in [packages/eslint-config-custom][3]
6
6
 
7
- 1:[https://www.workfloworchestrator.org]
8
- 2:[https://github.com/workfloworchestrator/orchestrator-ui-library]
9
- 3:[https://github.com/workfloworchestrator/orchestrator-ui-library/tree/main/packages/eslint-config-custom]
7
+ [1]:[https://www.workfloworchestrator.org]
8
+ [2]:[https://github.com/workfloworchestrator/orchestrator-ui-library]
9
+ [3]:[https://github.com/workfloworchestrator/orchestrator-ui-library/tree/main/packages/eslint-config-custom]
package/dist/index.mjs CHANGED
@@ -24,7 +24,7 @@ var require_eslint_config_custom = __commonJS({
24
24
  "@next/next/no-html-link-for-pages": "off",
25
25
  "@typescript-eslint/ban-ts-comment": "warn",
26
26
  "@typescript-eslint/no-explicit-any": "error",
27
- "no-console": ["error", { allow: ["error"] }],
27
+ "no-console": ["error", { allow: ["error", "warn"] }],
28
28
  "react/react-in-jsx-scope": 2,
29
29
  "react/jsx-uses-react": 2
30
30
  },
package/index.js CHANGED
@@ -9,7 +9,7 @@ module.exports = {
9
9
  '@next/next/no-html-link-for-pages': 'off',
10
10
  '@typescript-eslint/ban-ts-comment': 'warn',
11
11
  '@typescript-eslint/no-explicit-any': 'error',
12
- 'no-console': ['error', { allow: ['error'] }],
12
+ 'no-console': ['error', { allow: ['error', 'warn'] }],
13
13
  'react/react-in-jsx-scope': 2,
14
14
  'react/jsx-uses-react': 2,
15
15
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/eslint-config-custom",
3
- "version": "1.2.0",
3
+ "version": "1.3.0",
4
4
  "license": "Apache-2.0",
5
5
  "description": "Contains the eslint configuration used in the Workflow orchestrator frontend projects",
6
6
  "author": {