@becklyn/eslint 1.2.2 → 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,5 +1,5 @@
1
1
 
2
- > @becklyn/eslint@1.2.2 test
2
+ > @becklyn/eslint@1.3.0 test
3
3
  > echo "Error: no test specified" && exit 0
4
4
 
5
5
  Error: no test specified
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @becklyn/eslint
2
2
 
3
+ ## 1.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 240fc64: Improve excludes
8
+
9
+ ## 1.2.3
10
+
11
+ ### Patch Changes
12
+
13
+ - 5f57110: update dependencies
14
+
3
15
  ## 1.2.2
4
16
 
5
17
  ### Patch Changes
package/base.js CHANGED
@@ -43,6 +43,6 @@ export const config = [
43
43
  },
44
44
  },
45
45
  {
46
- ignores: ["dist/**", ".next/**", ".turbo/**"],
46
+ ignores: ["bin/**", "dist/**", ".next/**", ".turbo/**", "storybook-static/**"],
47
47
  },
48
48
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@becklyn/eslint",
3
- "version": "1.2.2",
3
+ "version": "1.3.0",
4
4
  "license": "MIT",
5
5
  "description": "the eslint-config base we use for our TypeScript apps",
6
6
  "homepage": "https://github.com/Becklyn-Studios/ts-libs/tree/main/packages/eslint",
@@ -20,15 +20,15 @@
20
20
  "dependencies": {
21
21
  "@eslint/js": "^9.39.2",
22
22
  "@limegrass/eslint-plugin-import-alias": "^1.6.0",
23
- "@next/eslint-plugin-next": "^16.0.10",
23
+ "@next/eslint-plugin-next": "^16.1.1",
24
24
  "eslint": "^9.39.2",
25
25
  "eslint-config-prettier": "^10.1.8",
26
26
  "eslint-plugin-only-warn": "^1.1.0",
27
27
  "eslint-plugin-react": "^7.37.5",
28
28
  "eslint-plugin-react-hooks": "^7.0.1",
29
29
  "eslint-plugin-unused-imports": "^4.3.0",
30
- "globals": "^16.5.0",
30
+ "globals": "^17.0.0",
31
31
  "typescript": "^5.9.3",
32
- "typescript-eslint": "^8.50.0"
32
+ "typescript-eslint": "^8.52.0"
33
33
  }
34
34
  }