@shgysk8zer0/11ty-netlify 1.1.7 → 1.1.8
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 +8 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
6
6
|
<!-- markdownlint-disable -->
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [v1.1.18] - 2024-04-16
|
|
10
|
+
|
|
11
|
+
### Added
|
|
12
|
+
- Add test for `svg-use-symbols`
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
- Update `@shgysk8zer0/svg-use-symbols` to fix missing consts
|
|
16
|
+
|
|
9
17
|
## [v1.1.7] - 2024-04-08
|
|
10
18
|
|
|
11
19
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shgysk8zer0/11ty-netlify",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.8",
|
|
4
4
|
"engines": {
|
|
5
5
|
"node": ">=18.13.0"
|
|
6
6
|
},
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
},
|
|
15
15
|
"description": "A collection of common npm packages for Eleventy sites on Netlify",
|
|
16
16
|
"config": {
|
|
17
|
-
"icons": "./
|
|
17
|
+
"icons": "./icons.json",
|
|
18
18
|
"dir": {
|
|
19
19
|
"css": "css/",
|
|
20
20
|
"js": "js/",
|
|
@@ -36,7 +36,7 @@
|
|
|
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",
|
|
38
38
|
"build:markdown": "rollup -c markdown.config.js",
|
|
39
|
-
"build:icons": "if [ -f ${npm_package_config_icons} ]; then
|
|
39
|
+
"build:icons": "if [ -f ${npm_package_config_icons} ]; then svg-use-symbols -c ${npm_package_config_icons} -o 'icons.svg'; fi",
|
|
40
40
|
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
|
|
41
41
|
"version:bump": "npm run version:bump:patch",
|
|
42
42
|
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"@shgysk8zer0/js-utils": "^1.0.1",
|
|
67
67
|
"@shgysk8zer0/npm-utils": "^1.1.0",
|
|
68
68
|
"@shgysk8zer0/rollup-import": "^1.2.0",
|
|
69
|
-
"@shgysk8zer0/svg-use-symbols": "^1.1.
|
|
70
|
-
"eslint-plugin-
|
|
69
|
+
"@shgysk8zer0/svg-use-symbols": "^1.1.1",
|
|
70
|
+
"eslint-plugin-frontmatter2": "^1.0.0",
|
|
71
71
|
"highlight.js": "^11.8.0",
|
|
72
72
|
"htmlhint": "^1.1.4",
|
|
73
73
|
"js-yaml": "^4.1.0",
|