@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.
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +12 -0
- package/README.md +3 -3
- package/dist/index.mjs +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
|
|
2
|
-
> @orchestrator-ui/eslint-config-custom@1.
|
|
2
|
+
> @orchestrator-ui/eslint-config-custom@1.3.0 build
|
|
3
3
|
> tsup index.js --format esm
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: index.js
|
|
6
6
|
[34mCLI[39m tsup v8.0.2
|
|
7
7
|
[34mCLI[39m Target: node16
|
|
8
8
|
[34mESM[39m Build start
|
|
9
|
-
[32mESM[39m [1mdist/index.mjs [22m[32m1.
|
|
10
|
-
[32mESM[39m ⚡️ Build success in
|
|
9
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m1.32 KB[39m
|
|
10
|
+
[32mESM[39m ⚡️ 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