@shgysk8zer0/11ty-netlify 1.0.9 → 1.1.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +14 -14
package/CHANGELOG.md CHANGED
@@ -6,6 +6,18 @@ 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.0] - 2023-07-04
10
+
11
+ ### Changed
12
+ - Update to node 20
13
+ - Update GH Action for npm publish
14
+ - Misc package version updates
15
+
16
+ ## [v1.0.10] - 2023-07-01
17
+
18
+ ### Changed
19
+ - Various package updates and update lock/version scripts
20
+
9
21
  ## [v1.0.9] - 2023-06-20
10
22
 
11
23
  ### Changed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shgysk8zer0/11ty-netlify",
3
- "version": "1.0.9",
3
+ "version": "1.1.0",
4
4
  "engines": {
5
5
  "node": ">=18.13.0"
6
6
  },
@@ -26,11 +26,6 @@
26
26
  "test": "npm run lint && npm run build",
27
27
  "preversion": "npm test",
28
28
  "prepare": "npm run build:markdown",
29
- "create:lock": "npm i --package-lock-only",
30
- "version:bump": "npm run version:bump:patch",
31
- "version:bump:patch": "npm version --no-git-tag-version patch",
32
- "version:bump:minor": "npm version --no-git-tag-version minor",
33
- "version:bump:major": "npm version --no-git-tag-version major",
34
29
  "lint": "npm run lint:js && npm run lint:css && npm run lint:html",
35
30
  "lint:js": "if [ -f .eslintrc.json ]; then eslint .; fi",
36
31
  "lint:css": "if [ -f .stylelintrc.json ]; then stylelint './**.css'; fi",
@@ -41,7 +36,12 @@
41
36
  "build:css": "postcss ${npm_package_config_dir_css}index.css -o ${npm_package_config_dir_css}index.min.css",
42
37
  "build:js": "rollup --config rollup.config.js",
43
38
  "build:markdown": "rollup -c markdown.config.js",
44
- "build:icons": "if [ -f ${npm_package_config_icons} ]; then $(svg-sprite-generate -c ${npm_package_config_icons} -o 'img/icons.svg'); fi"
39
+ "build:icons": "if [ -f ${npm_package_config_icons} ]; then $(svg-sprite-generate -c ${npm_package_config_icons} -o 'img/icons.svg'); fi",
40
+ "create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
41
+ "version:bump": "npm run version:bump:patch",
42
+ "version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
43
+ "version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
44
+ "version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
45
45
  },
46
46
  "repository": {
47
47
  "type": "git",
@@ -60,13 +60,13 @@
60
60
  "homepage": "https://github.com/shgysk8zer0/11ty-netlify#readme",
61
61
  "dependencies": {
62
62
  "@11ty/eleventy": "^2.0.1",
63
- "@shgysk8zer0/11ty-filters": "^0.0.6",
64
- "@shgysk8zer0/css-utils": "^1.1.1",
65
- "@shgysk8zer0/importmap": "^1.0.2",
66
- "@shgysk8zer0/js-utils": "^1.0.0",
67
- "@shgysk8zer0/npm-utils": "^1.0.5",
68
- "@shgysk8zer0/rollup-import": "^1.1.1",
69
- "@shgysk8zer0/svg-use-symbols": "^1.0.2",
63
+ "@shgysk8zer0/11ty-filters": "^0.1.0",
64
+ "@shgysk8zer0/css-utils": "^1.2.0",
65
+ "@shgysk8zer0/importmap": "^1.2.1",
66
+ "@shgysk8zer0/js-utils": "^1.0.1",
67
+ "@shgysk8zer0/npm-utils": "^1.1.0",
68
+ "@shgysk8zer0/rollup-import": "^1.2.0",
69
+ "@shgysk8zer0/svg-use-symbols": "^1.1.0",
70
70
  "eslint-plugin-frontmatter": "^0.0.8",
71
71
  "highlight.js": "^11.8.0",
72
72
  "htmlhint": "^1.1.4",