@mrpalmer/eslint-config 2.3.0 → 2.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.
package/package.json CHANGED
@@ -1,18 +1,24 @@
1
1
  {
2
2
  "name": "@mrpalmer/eslint-config",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Mike Palmer's personal ESLint rules",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "exports": {
8
8
  ".": {
9
- "import": "./index.js",
10
- "types": "./types/index.d.ts"
9
+ "types": "./types/index.d.ts",
10
+ "default": "./index.js"
11
11
  },
12
12
  "./package.json": "./package.json"
13
13
  },
14
- "main": "index.js",
14
+ "module": "index.js",
15
15
  "types": "types/index.d.ts",
16
+ "files": [
17
+ "index.js",
18
+ "configs",
19
+ "types",
20
+ "utils"
21
+ ],
16
22
  "scripts": {
17
23
  "prebuild": "rm -rf types",
18
24
  "build": "tsc",
@@ -27,7 +33,7 @@
27
33
  "dependencies": {
28
34
  "@eslint-react/eslint-plugin": "^2.2.2",
29
35
  "@eslint/js": "^9.31.0",
30
- "@mrpalmer/eslint-plugin": "^1.0.2",
36
+ "@mrpalmer/eslint-plugin": "^1.0.3",
31
37
  "eslint-import-resolver-typescript": "^4.4.4",
32
38
  "eslint-plugin-import-x": "^4.16.1",
33
39
  "eslint-plugin-jest": "^29.0.1",
@@ -1,8 +0,0 @@
1
-
2
- > @mrpalmer/eslint-config@2.3.0 prebuild
3
- > rm -rf types
4
-
5
-
6
- > @mrpalmer/eslint-config@2.3.0 build
7
- > tsc
8
-
package/CHANGELOG.md DELETED
@@ -1,39 +0,0 @@
1
- # @mrpalmer/eslint-config
2
-
3
- ## 2.3.0
4
-
5
- ### Minor Changes
6
-
7
- - 5e223a2: Upgrade plugins and configure new rules
8
-
9
- ### Patch Changes
10
-
11
- - b99f7df: Update dependencies
12
- - Updated dependencies [03c9f7f]
13
- - @mrpalmer/eslint-plugin@1.0.2
14
-
15
- ## 2.2.0
16
-
17
- ### Minor Changes
18
-
19
- - afbdd32: Replace `eslint-plugin-react` with `@eslint-react/eslint-plugin`
20
-
21
- ### Patch Changes
22
-
23
- - 1e43272: Update ESLint plugins
24
- - 32711bf: Fix order of configs in "all"
25
- - df14ce7: Export TypeScript types
26
- - Updated dependencies [96a657e]
27
- - @mrpalmer/eslint-plugin@1.0.1
28
-
29
- ## 2.1.0
30
-
31
- ### Minor Changes
32
-
33
- - 63cec80: - Replace `eslint-plugin-import` with `eslint-plugin-import-x`
34
- - Add `@mrpalmer/eslint-plugin` to default config
35
-
36
- ### Patch Changes
37
-
38
- - Updated dependencies [1e5fa18]
39
- - @mrpalmer/eslint-plugin@1.0.0
package/tsconfig.json DELETED
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.json",
3
- "compilerOptions": {
4
- "allowJs": true,
5
- "declaration": true,
6
- "declarationDir": "./types",
7
- "emitDeclarationOnly": true
8
- },
9
- "include": ["index.js"]
10
- }
package/turbo.json DELETED
@@ -1,8 +0,0 @@
1
- {
2
- "extends": ["//"],
3
- "tasks": {
4
- "build": {
5
- "outputs": ["types/**"]
6
- }
7
- }
8
- }