@orchestrator-ui/eslint-config-custom 0.3.0 → 0.3.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @orchestrator-ui/eslint-config-custom@0.3.0 build
2
+ > @orchestrator-ui/eslint-config-custom@0.3.1 build
3
3
  > tsup index.js --format esm
4
4
 
5
5
  CLI Building entry: index.js
@@ -7,4 +7,4 @@
7
7
  CLI Target: node16
8
8
  ESM Build start
9
9
  ESM dist/index.mjs 1.30 KB
10
- ESM ⚡️ Build success in 19ms
10
+ ESM ⚡️ Build success in 20ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @orchestrator-ui/eslint-config-custom
2
2
 
3
+ ## 0.3.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 5be68af: Exposing @typescript-eslint/eslint-plugin as dependency instead of devDependency
8
+
3
9
  ## 0.3.0
4
10
 
5
11
  ### Minor Changes
package/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@orchestrator-ui/eslint-config-custom",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "license": "MIT",
5
5
  "scripts": {
6
6
  "build": "tsup index.js --format esm",
7
7
  "dev": "npm run build -- --watch"
8
8
  },
9
9
  "dependencies": {
10
+ "@typescript-eslint/eslint-plugin": "^7.0.1",
10
11
  "eslint": "^8.56.0",
11
12
  "eslint-config-next": "^14.0.4",
12
13
  "eslint-config-prettier": "^9.1.0",
@@ -14,8 +15,5 @@
14
15
  },
15
16
  "publishConfig": {
16
17
  "access": "public"
17
- },
18
- "devDependencies": {
19
- "@typescript-eslint/eslint-plugin": "^7.0.1"
20
18
  }
21
19
  }