eslint-plugin-frontmatter2 1.0.0 → 1.0.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 +7 -0
- package/package.json +7 -3
- package/plugin.cjs +1 -1
- package/plugin.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.0.1] - 2026-02-25
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Update dependencies
|
|
14
|
+
- Update to node 24.10.0
|
|
15
|
+
- Update npm publishing
|
|
16
|
+
|
|
10
17
|
## [v1.0.0] - 2024-04-15
|
|
11
18
|
|
|
12
19
|
Initial Release
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-frontmatter2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Plugin to allow YAML frontmatter to be ignored by ESLint",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -79,7 +79,11 @@
|
|
|
79
79
|
"homepage": "https://github.com/shgysk8zer0/eslint-frontmatter#readme",
|
|
80
80
|
"devDependencies": {
|
|
81
81
|
"@rollup/plugin-json": "^6.1.0",
|
|
82
|
-
"eslint": "^
|
|
83
|
-
"rollup": "^4.
|
|
82
|
+
"eslint": "^10.0.2",
|
|
83
|
+
"rollup": "^4.59.0"
|
|
84
|
+
},
|
|
85
|
+
"dependencies": {
|
|
86
|
+
"@eslint/js": "^10.0.1",
|
|
87
|
+
"globals": "^17.3.0"
|
|
84
88
|
}
|
|
85
89
|
}
|
package/plugin.cjs
CHANGED
package/plugin.mjs
CHANGED