@shgysk8zer0/11ty-netlify 1.1.31 → 1.1.34
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 +19 -0
- package/markdown.cjs +0 -3
- package/markdown.js +0 -1
- package/package.json +13 -14
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [v1.1.34] - 2026-03-23
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Update dependencies
|
|
14
|
+
|
|
15
|
+
## [v1.1.33] - 2026-03-18
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
- Update dependencies
|
|
19
|
+
- Update ESLint to disallow invisible characters
|
|
20
|
+
|
|
21
|
+
## [v1.1.32] - 2026-03-10
|
|
22
|
+
|
|
23
|
+
### Added
|
|
24
|
+
- Add `@shgysk8zer0/stylelint-config`
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
- Update various config files
|
|
28
|
+
|
|
10
29
|
### [v1.1.31] - 2026-03-04
|
|
11
30
|
|
|
12
31
|
### Changed
|
package/markdown.cjs
CHANGED
package/markdown.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shgysk8zer0/11ty-netlify",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.34",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.13.0"
|
|
6
6
|
},
|
|
@@ -27,11 +27,11 @@
|
|
|
27
27
|
"preversion": "npm test",
|
|
28
28
|
"prepare": "npm run build:markdown",
|
|
29
29
|
"lint": "npm run lint:js && npm run lint:css && npm run lint:html",
|
|
30
|
-
"lint:js": "if [ -f .
|
|
31
|
-
"lint:css": "if [ -f .
|
|
30
|
+
"lint:js": "if [ -f eslint.config.js ]; then eslint .; fi",
|
|
31
|
+
"lint:css": "if [ -f stylelint.config.js ]; then stylelint './**.css'; fi",
|
|
32
32
|
"lint:html": "if [ -f .htmlhintrc ]; then htmlhint ${npm_package_config_dir_html}; fi",
|
|
33
33
|
"fix:css": "stylelint './**.css' --fix",
|
|
34
|
-
"fix:js": "eslint. --fix",
|
|
34
|
+
"fix:js": "eslint . --fix",
|
|
35
35
|
"build": "npm run build:icons && npm run build:css && npm run build:js",
|
|
36
36
|
"build:css": "postcss ${npm_package_config_dir_css}index.css -o ${npm_package_config_dir_css}index.min.css",
|
|
37
37
|
"build:js": "rollup --config rollup.config.js",
|
|
@@ -60,21 +60,20 @@
|
|
|
60
60
|
"homepage": "https://github.com/shgysk8zer0/11ty-netlify#readme",
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@shgysk8zer0/11ty-filters": "^0.1.2",
|
|
63
|
-
"@11ty/eleventy": "^3.1.
|
|
63
|
+
"@11ty/eleventy": "^3.1.5",
|
|
64
64
|
"@shgysk8zer0/css-utils": "^1.2.1",
|
|
65
|
-
"@shgysk8zer0/
|
|
66
|
-
"@shgysk8zer0/
|
|
67
|
-
"@shgysk8zer0/
|
|
68
|
-
"@shgysk8zer0/
|
|
65
|
+
"@shgysk8zer0/eslint-config": "^1.0.9",
|
|
66
|
+
"@shgysk8zer0/importmap": "^1.8.8",
|
|
67
|
+
"@shgysk8zer0/js-utils": "^1.0.6",
|
|
68
|
+
"@shgysk8zer0/npm-utils": "1.1.6",
|
|
69
|
+
"@shgysk8zer0/rollup-import": "^2.0.3",
|
|
70
|
+
"@shgysk8zer0/stylelint-config": "^1.0.1",
|
|
69
71
|
"@shgysk8zer0/svg-use-symbols": "^1.1.4",
|
|
70
72
|
"eslint-plugin-frontmatter2": "^1.0.1",
|
|
71
73
|
"highlight.js": "^11.11.1",
|
|
72
|
-
"htmlhint": "^1.9.
|
|
74
|
+
"htmlhint": "^1.9.2",
|
|
73
75
|
"js-yaml": "^4.1.1",
|
|
74
76
|
"markdown-it": "^14.1.1",
|
|
75
|
-
"netlify-cli": "^24.
|
|
76
|
-
},
|
|
77
|
-
"devDependencies": {
|
|
78
|
-
"@shgysk8zer0/eslint-config": "^1.0.7"
|
|
77
|
+
"netlify-cli": "^24.4.1"
|
|
79
78
|
}
|
|
80
79
|
}
|