ultimate-jekyll-manager 1.1.5 → 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
CHANGED
|
@@ -14,6 +14,19 @@ 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
|
+
|
|
23
|
+
---
|
|
24
|
+
## [1.1.6] - 2026-04-09
|
|
25
|
+
### Changed
|
|
26
|
+
- Add `hover-flex` prebuilt animation class to pricing page billing cycle toggle (Monthly/Annually) for subtle scale-up on hover
|
|
27
|
+
- Update README and TODO docs to use `npx mgr` instead of `npx uj`
|
|
28
|
+
- Fix `[Billing] Cancel complete` log to read product ID from current account instead of undefined variable
|
|
29
|
+
|
|
17
30
|
---
|
|
18
31
|
## [1.1.5] - 2026-04-09
|
|
19
32
|
### Changed
|
package/README.md
CHANGED
|
@@ -81,13 +81,13 @@ Here are some examples:
|
|
|
81
81
|
### Run the `audit` task:
|
|
82
82
|
```bash
|
|
83
83
|
# Run the audit task
|
|
84
|
-
npx
|
|
84
|
+
npx mgr audit
|
|
85
85
|
|
|
86
86
|
# Run with a Lighthouse URL (defaults to "/" if not provided)
|
|
87
|
-
npx
|
|
87
|
+
npx mgr audit -- --lighthouseUrl="/contact"
|
|
88
88
|
|
|
89
89
|
# Add autoExit to continue developing and testing AFTER the audit
|
|
90
|
-
npx
|
|
90
|
+
npx mgr audit -- --lighthouseUrl="/contact" --autoExit=false
|
|
91
91
|
```
|
|
92
92
|
|
|
93
93
|
### Run the `translation` task:
|
|
@@ -96,14 +96,14 @@ npx uj audit -- --lighthouseUrl="/contact" --autoExit=false
|
|
|
96
96
|
GH_TOKEN=XXX \
|
|
97
97
|
GITHUB_REPOSITORY=XXX \
|
|
98
98
|
UJ_TRANSLATION_CACHE=true \
|
|
99
|
-
npx
|
|
99
|
+
npx mgr translation
|
|
100
100
|
|
|
101
101
|
# Test with only 1 file
|
|
102
102
|
UJ_TRANSLATION_ONLY="index.html" \
|
|
103
103
|
GH_TOKEN=XXX \
|
|
104
104
|
GITHUB_REPOSITORY=XXX \
|
|
105
105
|
UJ_TRANSLATION_CACHE=true \
|
|
106
|
-
npx
|
|
106
|
+
npx mgr translation
|
|
107
107
|
```
|
|
108
108
|
|
|
109
109
|
### Run the `imagemin` task:
|
|
@@ -113,10 +113,10 @@ Test image optimization with GitHub cache in development mode:
|
|
|
113
113
|
GH_TOKEN=XXX \
|
|
114
114
|
GITHUB_REPOSITORY=XXX \
|
|
115
115
|
UJ_IMAGEMIN_CACHE=true \
|
|
116
|
-
npx
|
|
116
|
+
npx mgr imagemin
|
|
117
117
|
|
|
118
118
|
# Or run locally without cache
|
|
119
|
-
npx
|
|
119
|
+
npx mgr imagemin
|
|
120
120
|
```
|
|
121
121
|
The imagemin task will:
|
|
122
122
|
- Process images from `src/assets/images/**/*.{jpg,jpeg,png}`
|
|
@@ -136,7 +136,7 @@ npm run prepare:watch
|
|
|
136
136
|
### Run the `blogify` task:
|
|
137
137
|
Create 12 test blog posts in the `_posts` directory with the `blogify` task. This is useful for testing and development purposes.
|
|
138
138
|
```bash
|
|
139
|
-
npx
|
|
139
|
+
npx mgr blogify
|
|
140
140
|
```
|
|
141
141
|
|
|
142
142
|
## Page Frontmatter
|
package/TODO.md
CHANGED
|
@@ -146,7 +146,7 @@ QUESTIONS
|
|
|
146
146
|
|
|
147
147
|
- easy system for a main css, js, etc bundle BUT user can make page specific bundles
|
|
148
148
|
- uncompiled should move everything inside it to css/images/js/vendor
|
|
149
|
-
- make an update fn that will update UJ eith er in `npx
|
|
149
|
+
- make an update fn that will update UJ eith er in `npx mgr setup` or a separate process
|
|
150
150
|
|
|
151
151
|
- we shoudl be able to MERGE site settings
|
|
152
152
|
- so site is default, then merge layount, then merge page (each OVERWRITING the previous one)
|
|
@@ -366,7 +366,7 @@ MAYBE
|
|
|
366
366
|
# - name: Run node build
|
|
367
367
|
# # run: npm run build -- --buildLocation='server'
|
|
368
368
|
# run: |
|
|
369
|
-
# UJ_BUILD_MODE=true UJ_IS_SERVER=true node node_modules/ultimate-jekyll-manager/ensure-production-build.js && npx
|
|
369
|
+
# UJ_BUILD_MODE=true UJ_IS_SERVER=true node node_modules/ultimate-jekyll-manager/ensure-production-build.js && npx mgr setup && npm run build
|
|
370
370
|
# - name: Create build.json
|
|
371
371
|
# run: |
|
|
372
372
|
# export TZ=UTC date
|
|
@@ -401,7 +401,7 @@ MAYBE
|
|
|
401
401
|
# with:
|
|
402
402
|
# name: github-pages
|
|
403
403
|
|
|
404
|
-
"deploy": "UJ_BUILD_MODE=true UJ_IS_SERVER=true npx
|
|
404
|
+
"deploy": "UJ_BUILD_MODE=true UJ_IS_SERVER=true npx mgr setup && npm run build"
|
|
405
405
|
|
|
406
406
|
|
|
407
407
|
tempalte names
|
|
@@ -257,7 +257,7 @@ function setupCancellationForm() {
|
|
|
257
257
|
throw new Error(response.message || 'Failed to cancel subscription. Please try again.');
|
|
258
258
|
}
|
|
259
259
|
|
|
260
|
-
console.log('[Billing] Cancel complete:', { isTrialCancel, productId });
|
|
260
|
+
console.log('[Billing] Cancel complete:', { isTrialCancel, productId: currentAccount?.subscription?.product?.id });
|
|
261
261
|
|
|
262
262
|
if (isTrialCancel) {
|
|
263
263
|
cancelFormManager.showSuccess('Your trial has been cancelled. You\'ve been moved to the free plan. You can subscribe again anytime.');
|
|
@@ -240,10 +240,10 @@ faqs:
|
|
|
240
240
|
<div class="text-center mb-5">
|
|
241
241
|
<div class="btn-group" role="group" aria-label="Billing toggle" data-lazy="@class animation-popup">
|
|
242
242
|
<input type="radio" class="btn-check" name="billing" id="monthly" autocomplete="off" data-billing="monthly">
|
|
243
|
-
<label class="btn btn-outline-adaptive rounded-start-pill" for="monthly">Monthly</label>
|
|
243
|
+
<label class="btn btn-outline-adaptive rounded-start-pill hover-flex" for="monthly">Monthly</label>
|
|
244
244
|
|
|
245
245
|
<input type="radio" class="btn-check" name="billing" id="annually" autocomplete="off" checked data-billing="annually">
|
|
246
|
-
<label class="btn btn-primary rounded-end-pill position-relative" for="annually">
|
|
246
|
+
<label class="btn btn-primary rounded-end-pill position-relative hover-flex" for="annually">
|
|
247
247
|
Annually
|
|
248
248
|
<!-- <span class="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-primary">
|
|
249
249
|
up to 20% off
|
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
|
}
|