@abinnovision/eslint-config-base 2.1.0 → 2.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.1.1](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v2.1.0...eslint-config-base-v2.1.1) (2024-10-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **eslint-config:** add ignores to exclude build directories ([#329](https://github.com/abinnovision/js-commons/issues/329)) ([b6821d1](https://github.com/abinnovision/js-commons/commit/b6821d167217de9baa33475bc8fa90cb48bf5153))
9
+
3
10
  ## [2.1.0](https://github.com/abinnovision/js-commons/compare/eslint-config-base-v2.0.0...eslint-config-base-v2.1.0) (2024-08-05)
4
11
 
5
12
 
package/dist/index.cjs CHANGED
@@ -42,6 +42,7 @@ var config = [
42
42
  languageOptions: {
43
43
  ecmaVersion: "latest"
44
44
  },
45
+ ignores: [".next", "dist", ".wrangler", ".vercel", ".turbo", ".yarn"],
45
46
  plugins: {
46
47
  /**
47
48
  * eslint-plugin-import is not yet compatible with ESLint v9.
package/dist/index.d.cts CHANGED
@@ -5,6 +5,7 @@ declare const config: {
5
5
  languageOptions: {
6
6
  ecmaVersion: "latest";
7
7
  };
8
+ ignores: string[];
8
9
  plugins: {
9
10
  /**
10
11
  * eslint-plugin-import is not yet compatible with ESLint v9.
package/dist/index.d.ts CHANGED
@@ -5,6 +5,7 @@ declare const config: {
5
5
  languageOptions: {
6
6
  ecmaVersion: "latest";
7
7
  };
8
+ ignores: string[];
8
9
  plugins: {
9
10
  /**
10
11
  * eslint-plugin-import is not yet compatible with ESLint v9.
package/dist/index.js CHANGED
@@ -8,6 +8,7 @@ var config = [
8
8
  languageOptions: {
9
9
  ecmaVersion: "latest"
10
10
  },
11
+ ignores: [".next", "dist", ".wrangler", ".vercel", ".turbo", ".yarn"],
11
12
  plugins: {
12
13
  /**
13
14
  * eslint-plugin-import is not yet compatible with ESLint v9.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abinnovision/eslint-config-base",
3
- "version": "2.1.0",
3
+ "version": "2.1.1",
4
4
  "type": "module",
5
5
  "repository": {
6
6
  "url": "https://github.com/abinnovision/js-commons"
@@ -42,17 +42,17 @@
42
42
  },
43
43
  "prettier": "@abinnovision/prettier-config",
44
44
  "dependencies": {
45
- "@eslint/compat": "^1.1.1",
45
+ "@eslint/compat": "^1.2.0",
46
46
  "eslint-config-alloy": "^5.1.2",
47
47
  "eslint-plugin-import": "^2.29.1"
48
48
  },
49
49
  "devDependencies": {
50
- "@abinnovision/prettier-config": "^2.1.0",
51
- "@types/eslint": "^9.6.0",
52
- "eslint": "^9.8.0",
53
- "globals": "^15.9.0",
50
+ "@abinnovision/prettier-config": "^2.1.2",
51
+ "@types/eslint": "^9.6.1",
52
+ "eslint": "^9.9.1",
53
+ "globals": "^15.10.0",
54
54
  "prettier": "^3.3.3",
55
- "tsup": "^8.2.4"
55
+ "tsup": "^8.3.0"
56
56
  },
57
57
  "peerDependencies": {
58
58
  "eslint": "^8.24.0 || ^9.0.0"