ultimate-jekyll-manager 1.4.0 → 1.4.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 +8 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,14 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
|
14
14
|
- `Fixed` for any bug fixes.
|
|
15
15
|
- `Security` in case of vulnerabilities.
|
|
16
16
|
|
|
17
|
+
---
|
|
18
|
+
## [1.4.1] - 2026-05-27
|
|
19
|
+
|
|
20
|
+
### Changed
|
|
21
|
+
|
|
22
|
+
- **Bumped `puppeteer` `^24.43.1` → `^25.1.0`.** Puppeteer 25 is ESM-only and requires Node 22+; UJM's existing `require('puppeteer')` calls in [src/test/runners/boot.js](src/test/runners/boot.js) and [src/test/runners/chromium.js](src/test/runners/chromium.js) keep working via Node 22's native ESM-require interop.
|
|
23
|
+
- **Bumped `html-validate` `^10.17.0` → `^11.4.0`.** Used by [src/gulp/tasks/audit.js](src/gulp/tasks/audit.js); audit suite still passes.
|
|
24
|
+
|
|
17
25
|
---
|
|
18
26
|
## [1.4.0] - 2026-05-27
|
|
19
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultimate-jekyll-manager",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.1",
|
|
4
4
|
"description": "Ultimate Jekyll dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -67,8 +67,8 @@
|
|
|
67
67
|
"lighthouse": "Removed from deps to avoid @sentry/core version conflicts with web-manager. Install globally: npm i -g lighthouse"
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@babel/core": "^7.29.
|
|
71
|
-
"@babel/preset-env": "^7.29.
|
|
70
|
+
"@babel/core": "^7.29.7",
|
|
71
|
+
"@babel/preset-env": "^7.29.7",
|
|
72
72
|
"@fullhuman/postcss-purgecss": "^8.0.0",
|
|
73
73
|
"@minify-html/node": "^0.18.1",
|
|
74
74
|
"@octokit/rest": "^22.0.1",
|
|
@@ -81,9 +81,9 @@
|
|
|
81
81
|
"chart.js": "^4.5.1",
|
|
82
82
|
"cheerio": "^1.2.0",
|
|
83
83
|
"chrome-launcher": "^1.2.1",
|
|
84
|
-
"dompurify": "^3.4.
|
|
84
|
+
"dompurify": "^3.4.6",
|
|
85
85
|
"dotenv": "^17.4.2",
|
|
86
|
-
"fast-xml-parser": "^5.
|
|
86
|
+
"fast-xml-parser": "^5.8.0",
|
|
87
87
|
"fs-jetpack": "^5.1.0",
|
|
88
88
|
"glob": "^13.0.6",
|
|
89
89
|
"gulp-clean-css": "^4.3.0",
|
|
@@ -93,22 +93,22 @@
|
|
|
93
93
|
"gulp-responsive-modern": "^1.0.0",
|
|
94
94
|
"gulp-sass": "^6.0.1",
|
|
95
95
|
"html-minifier-terser": "^7.2.0",
|
|
96
|
-
"html-validate": "^
|
|
96
|
+
"html-validate": "^11.4.0",
|
|
97
97
|
"itwcw-package-analytics": "^1.0.8",
|
|
98
98
|
"js-yaml": "^4.1.1",
|
|
99
99
|
"json5": "^2.2.3",
|
|
100
100
|
"libsodium-wrappers": "^0.8.4",
|
|
101
101
|
"lodash": "^4.18.1",
|
|
102
|
-
"markdown-it": "^14.
|
|
102
|
+
"markdown-it": "^14.2.0",
|
|
103
103
|
"minimatch": "^10.2.5",
|
|
104
104
|
"node-powertools": "^3.0.0",
|
|
105
105
|
"npm-api": "^1.0.1",
|
|
106
|
-
"postcss": "^8.5.
|
|
106
|
+
"postcss": "^8.5.15",
|
|
107
107
|
"prettier": "^3.8.3",
|
|
108
|
-
"sass": "^1.
|
|
108
|
+
"sass": "^1.100.0",
|
|
109
109
|
"spellchecker": "^3.7.1",
|
|
110
110
|
"web-manager": "^4.2.0",
|
|
111
|
-
"webpack": "^5.
|
|
111
|
+
"webpack": "^5.107.2",
|
|
112
112
|
"wonderful-fetch": "^2.0.5",
|
|
113
113
|
"wonderful-version": "^1.3.2",
|
|
114
114
|
"yargs": "^18.0.0"
|
|
@@ -118,6 +118,6 @@
|
|
|
118
118
|
},
|
|
119
119
|
"devDependencies": {
|
|
120
120
|
"prepare-package": "^2.1.0",
|
|
121
|
-
"puppeteer": "^
|
|
121
|
+
"puppeteer": "^25.1.0"
|
|
122
122
|
}
|
|
123
123
|
}
|