@jabworks/eslint-plugin 1.0.1 → 1.0.2

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 (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +5 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @jabworks/eslint-plugin
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Move workspace dep to dev dep
8
+
3
9
  ## 1.0.1
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -24,10 +24,12 @@
24
24
  "eslint-plugin-unicorn": "^59.0.1",
25
25
  "globals": "^16.2.0",
26
26
  "typescript": "^5.8.3",
27
- "typescript-eslint": "^8.33.0",
28
- "@jabworks/typescript-config": "0.0.0"
27
+ "typescript-eslint": "^8.33.0"
29
28
  },
30
29
  "description": "Opinionated ESLint plugin and flat config for JS, TS, React, and Next.js",
30
+ "devDependencies": {
31
+ "@jabworks/typescript-config": "0.0.0"
32
+ },
31
33
  "exports": {
32
34
  ".": {
33
35
  "import": "./src/index.js",
@@ -57,5 +59,5 @@
57
59
  },
58
60
  "type": "module",
59
61
  "types": "./src/types/index.d.ts",
60
- "version": "1.0.1"
62
+ "version": "1.0.2"
61
63
  }