eslint-plugin-nextfriday 1.5.0 → 1.5.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.
- package/CHANGELOG.md +12 -0
- package/package.json +1 -3
- package/lib/index.cjs +0 -1237
- package/lib/index.cjs.map +0 -1
- package/lib/index.d.cts +0 -388
- package/lib/index.d.ts +0 -388
- package/lib/index.js +0 -1198
- package/lib/index.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# eslint-plugin-nextfriday
|
|
2
2
|
|
|
3
|
+
## 1.5.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#32](https://github.com/next-friday/eslint-plugin-nextfriday/pull/32) [`1efbfc0`](https://github.com/next-friday/eslint-plugin-nextfriday/commit/1efbfc05590ed21ee786a5e03f89ff6bcb38fe69) Thanks [@nextfridaydeveloper](https://github.com/nextfridaydeveloper)! - Update package scripts: remove prepublishOnly script and update prepare script to use husky without fallback
|
|
8
|
+
|
|
9
|
+
## 1.5.1
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- [#30](https://github.com/next-friday/eslint-plugin-nextfriday/pull/30) [`cc054bc`](https://github.com/next-friday/eslint-plugin-nextfriday/commit/cc054bc46b902af77e747b72b09eb56854ea9630) Thanks [@nextfridaydeveloper](https://github.com/nextfridaydeveloper)! - Fix package installation warnings by removing preinstall script and making prepare script fail-safe
|
|
14
|
+
|
|
3
15
|
## 1.5.0
|
|
4
16
|
|
|
5
17
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-nextfriday",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"description": "A comprehensive ESLint plugin providing custom rules and configurations for Next Friday development workflows.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -52,9 +52,7 @@
|
|
|
52
52
|
"clear": "rm -rf lib node_modules/.cache .eslintcache",
|
|
53
53
|
"eslint": "eslint src --ext .js,.ts --fix",
|
|
54
54
|
"eslint:check": "eslint src --ext .js,.ts",
|
|
55
|
-
"preinstall": "npx only-allow pnpm",
|
|
56
55
|
"prepare": "husky",
|
|
57
|
-
"prepublishOnly": "pnpm run build",
|
|
58
56
|
"prettier": "prettier --write .",
|
|
59
57
|
"prettier:check": "prettier --check .",
|
|
60
58
|
"sort-package-json": "pnpm exec sort-package-json",
|