@orchestrator-ui/eslint-config-custom 0.1.0 → 0.2.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,9 +1,10 @@
1
- yarn run v1.22.21
2
- $ tsup index.js --format esm
1
+
2
+ > @orchestrator-ui/eslint-config-custom@0.2.0 build
3
+ > tsup index.js --format esm
4
+
3
5
  CLI Building entry: index.js
4
6
  CLI tsup v8.0.1
5
7
  CLI Target: node16
6
8
  ESM Build start
7
- ESM dist/index.mjs 1.32 KB
8
- ESM ⚡️ Build success in 16ms
9
- Done in 0.47s.
9
+ ESM dist/index.mjs 1.30 KB
10
+ ESM ⚡️ Build success in 21ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/eslint-config-custom
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 2747ef2: Remove turborepo linting rule
8
+
3
9
  ## 0.1.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.mjs CHANGED
@@ -18,7 +18,6 @@ var require_eslint_config_custom = __commonJS({
18
18
  "plugin:@typescript-eslint/recommended",
19
19
  "next",
20
20
  "next/core-web-vitals",
21
- "turbo",
22
21
  "prettier"
23
22
  ],
24
23
  rules: {
package/index.js CHANGED
@@ -3,7 +3,6 @@ module.exports = {
3
3
  'plugin:@typescript-eslint/recommended',
4
4
  'next',
5
5
  'next/core-web-vitals',
6
- 'turbo',
7
6
  'prettier',
8
7
  ],
9
8
  rules: {
package/package.json CHANGED
@@ -1,17 +1,16 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/eslint-config-custom",
3
- "version": "0.1.0",
3
+ "version": "0.2.0",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "tsup index.js --format esm",
7
- "dev": "yarn build -- --watch"
7
+ "dev": "npm run build -- --watch"
8
8
  },
9
9
  "dependencies": {
10
- "@typescript-eslint/eslint-plugin": "^6.2.0",
11
- "eslint": "^8.48.0",
10
+ "@typescript-eslint/eslint-plugin": "^6.18.0",
11
+ "eslint": "^8.56.0",
12
12
  "eslint-config-next": "^14.0.4",
13
13
  "eslint-config-prettier": "^9.1.0",
14
- "eslint-config-turbo": "^1.11.1",
15
14
  "eslint-plugin-react": "^7.28.0"
16
15
  },
17
16
  "publishConfig": {