ultimate-jekyll-manager 1.1.6 → 1.1.7
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 +6 -0
- package/package.json +8 -7
package/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@ 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.1.7] - 2026-04-10
|
|
19
|
+
### Changed
|
|
20
|
+
- Update dependencies: web-manager to 4.1.39, webpack to 5.106.1, prettier to 3.8.2, libsodium-wrappers to 0.8.3, prepare-package to 2.1.0
|
|
21
|
+
- Add empty `hooks` object to `preparePackage` config in package.json for prepare-package 2.1.0's new hooks feature
|
|
22
|
+
|
|
17
23
|
---
|
|
18
24
|
## [1.1.6] - 2026-04-09
|
|
19
25
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ultimate-jekyll-manager",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.7",
|
|
4
4
|
"description": "Ultimate Jekyll dependency manager",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"exports": {
|
|
@@ -25,7 +25,8 @@
|
|
|
25
25
|
"input": "./src",
|
|
26
26
|
"output": "./dist",
|
|
27
27
|
"replace": {},
|
|
28
|
-
"type": "copy"
|
|
28
|
+
"type": "copy",
|
|
29
|
+
"hooks": {}
|
|
29
30
|
},
|
|
30
31
|
"projectScripts": {
|
|
31
32
|
"start": "npx mgr clean && npx mgr setup && bundle exec npm run gulp --",
|
|
@@ -94,19 +95,19 @@
|
|
|
94
95
|
"itwcw-package-analytics": "^1.0.8",
|
|
95
96
|
"js-yaml": "^4.1.1",
|
|
96
97
|
"json5": "^2.2.3",
|
|
97
|
-
"libsodium-wrappers": "^0.8.
|
|
98
|
+
"libsodium-wrappers": "^0.8.3",
|
|
98
99
|
"lodash": "^4.18.1",
|
|
99
100
|
"markdown-it": "^14.1.1",
|
|
100
101
|
"minimatch": "^10.2.5",
|
|
101
102
|
"node-powertools": "^3.0.0",
|
|
102
103
|
"npm-api": "^1.0.1",
|
|
103
104
|
"postcss": "^8.5.9",
|
|
104
|
-
"prettier": "^3.8.
|
|
105
|
+
"prettier": "^3.8.2",
|
|
105
106
|
"sass": "^1.99.0",
|
|
106
107
|
"spellchecker": "^3.7.1",
|
|
107
108
|
"through2": "^4.0.2",
|
|
108
|
-
"web-manager": "^4.1.
|
|
109
|
-
"webpack": "^5.106.
|
|
109
|
+
"web-manager": "^4.1.39",
|
|
110
|
+
"webpack": "^5.106.1",
|
|
110
111
|
"wonderful-fetch": "^2.0.5",
|
|
111
112
|
"wonderful-version": "^1.3.2",
|
|
112
113
|
"yargs": "^18.0.0"
|
|
@@ -115,6 +116,6 @@
|
|
|
115
116
|
"gulp": "^5.0.1"
|
|
116
117
|
},
|
|
117
118
|
"devDependencies": {
|
|
118
|
-
"prepare-package": "^2.0
|
|
119
|
+
"prepare-package": "^2.1.0"
|
|
119
120
|
}
|
|
120
121
|
}
|