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 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.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": "^9.0.0",
83
- "rollup": "^4.14.3"
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
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  var name = "eslint-plugin-frontmatter2";
4
- var version = "1.0.0";
4
+ var version = "1.0.1";
5
5
 
6
6
  // Import from module since import attributes not yet supported
7
7
 
package/plugin.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  var name = "eslint-plugin-frontmatter2";
2
- var version = "1.0.0";
2
+ var version = "1.0.1";
3
3
 
4
4
  // Import from module since import attributes not yet supported
5
5