eslint-plugin-spellbookx 0.7.0 → 0.7.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.
@@ -1,12 +1,8 @@
1
1
 
2
- > eslint-plugin-spellbookx@0.7.0 build /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
3
- > rolldown -c
2
+ > eslint-plugin-spellbookx@0.7.2 build /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
3
+ > rolldown -c && tsc
4
4
 
5
5
  [log] <DIR>/types.js chunk │ size: 0.32 kB
6
- [log] <DIR>/index.js chunk │ size: 10.87 kB
6
+ [log] <DIR>/index.js chunk │ size: 10.88 kB
7
7
  [log]
8
- [success] rolldown v1.0.0-rc.1 Finished in 17.05 ms
9
-
10
- > eslint-plugin-spellbookx@0.7.0 postbuild /home/runner/work/spellbookx/spellbookx/packages/eslint-plugin-spellbookx
11
- > tsc
12
-
8
+ [success] rolldown v1.0.0-rc.1 Finished in 53.78 ms
@@ -1 +1 @@
1
- {"version":3,"file":"ignores.d.ts","sourceRoot":"","sources":["../../src/configs/ignores.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAGrC,QAAA,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EA0FhC,CAAC;AAEH,eAAe,aAAa,CAAC"}
1
+ {"version":3,"file":"ignores.d.ts","sourceRoot":"","sources":["../../src/configs/ignores.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,QAAQ,CAAC;AAGrC,QAAA,MAAM,aAAa,EAAE,MAAM,CAAC,MAAM,EA6FhC,CAAC;AAEH,eAAe,aAAa,CAAC"}
package/dist/index.js CHANGED
@@ -109,7 +109,8 @@ const configIgnores = defineConfig([globalIgnores([
109
109
  "**/System Volume Information/**",
110
110
  "**/pagefile.sys",
111
111
  "**/swapfile.sys",
112
- "**/hiberfil.sys"
112
+ "**/hiberfil.sys",
113
+ "**/*.hbs"
113
114
  ])]);
114
115
  var ignores_default = configIgnores;
115
116
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-spellbookx",
3
- "version": "0.7.0",
3
+ "version": "0.7.2",
4
4
  "private": false,
5
5
  "description": "Shared ESLint plugin and configs tuned for the Spellbookx monorepo and common JS/TS frameworks.",
6
6
  "keywords": [
@@ -63,7 +63,7 @@
63
63
  "eslint": "^9.39.2",
64
64
  "rolldown": "1.0.0-rc.1",
65
65
  "typescript": "5.9.2",
66
- "@spellbookx/typescript-config": "0.7.0"
66
+ "@spellbookx/typescript-config": "0.7.2"
67
67
  },
68
68
  "peerDependencies": {
69
69
  "eslint": "^9.39.2"
@@ -72,7 +72,6 @@
72
72
  "access": "public"
73
73
  },
74
74
  "scripts": {
75
- "build": "rolldown -c",
76
- "postbuild": "tsc"
75
+ "build": "rolldown -c && tsc"
77
76
  }
78
77
  }
@@ -90,6 +90,9 @@ const configIgnores: Linter.Config[] = defineConfig([
90
90
  '**/pagefile.sys',
91
91
  '**/swapfile.sys',
92
92
  '**/hiberfil.sys',
93
+
94
+ // Other unsupported files
95
+ '**/*.hbs',
93
96
  ]),
94
97
  ]);
95
98