ultimate-jekyll-manager 1.9.2 → 1.9.3

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,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.9.3] - 2026-06-18
19
+
20
+ ### Changed
21
+ - **Notifly build-error notifications use absolute path.** Switched from bare `notifly` keyword to full application path (`/Applications/Notifly.app/Contents/MacOS/Notifly`) so the notification binary resolves reliably regardless of PATH.
22
+
17
23
  ---
18
24
  ## [1.9.2] - 2026-06-17
19
25
 
package/dist/build.js CHANGED
@@ -68,7 +68,7 @@ Manager.reportBuildError = function (error, callback) {
68
68
  const errorMessage = error.message || error.toString() || 'Unknown error';
69
69
  const errorPlugin = error.plugin || 'Build';
70
70
 
71
- execute(`notifly --title 'Build Error: ${errorPlugin}' --message '${errorMessage.replace(/'/g, "\\'")}' --appIcon '/Users/ian/claude-ai-icon.png' --timeout 3 --sound 'Sosumi'`)
71
+ execute(`/Applications/Notifly.app/Contents/MacOS/Notifly --title 'Build Error: ${errorPlugin}' --message '${errorMessage.replace(/'/g, "\\'")}' --appIcon '/Users/ian/claude-ai-icon.png' --timeout 3 --sound 'Sosumi'`)
72
72
  .catch((e) => {
73
73
  logger.error('Failed to send notification', e);
74
74
  });
package/logs/test.log CHANGED
@@ -1,29 +1,29 @@
1
- # ujm log — 2026-06-18T02:44:23.186Z — pid=67215
2
- [19:44:23] 'test': Running tests (layer=all)
3
- [19:44:23] 'test': Test mode: normal (external APIs skipped)
1
+ # ujm log — 2026-06-18T20:43:18.296Z — pid=99488
2
+ [13:43:18] 'test': Running tests (layer=all)
3
+ [13:43:18] 'test': Test mode: normal (external APIs skipped)
4
4
 
5
5
  Ultimate Jekyll Manager Tests
6
6
 
7
7
  Framework Tests
8
8
  ⤷ attach-log-file — tee stdout/stderr to a file
9
- ✓ exports the expected surface (0ms)
9
+ ✓ exports the expected surface (1ms)
10
10
  ✓ stripAnsi removes color escape codes (0ms)
11
11
  hello world
12
12
  colored line
13
13
  ✓ attach + stdout.write + detach: file contains the writes (0ms)
14
14
  ✓ idempotent: attaching twice with same name returns same fd (0ms)
15
- ✓ attach with falsy name returns null and does nothing (0ms)
15
+ ✓ attach with falsy name returns null and does nothing (1ms)
16
16
  ⤷ CLI alias resolution
17
17
  ✓ cli.js exports a Main class (0ms)
18
- ✓ all expected commands exist on disk (1ms)
18
+ ✓ all expected commands exist on disk (0ms)
19
19
  ✓ each command module exports an async function (3ms)
20
20
  ⤷ collectTextNodes (utils/collectTextNodes.js)
21
- ✓ extracts page title (107ms)
22
- ✓ skips <script> and <style> (1ms)
23
- ✓ spellcheck dictionary (utils/dictionary.js) (1ms)
21
+ ✓ extracts page title (98ms)
22
+ ✓ skips <script> and <style> (0ms)
23
+ ✓ spellcheck dictionary (utils/dictionary.js) (0ms)
24
24
  ⤷ expect() matcher set
25
25
  ✓ toBe + toEqual basics (0ms)
26
- ✓ .not negates (0ms)
26
+ ✓ .not negates (1ms)
27
27
  ✓ toContain works on arrays and strings (0ms)
28
28
  ✓ toThrow catches sync + async throws (0ms)
29
29
  ✓ toBeGreaterThan / toBeLessThan (0ms)
@@ -44,7 +44,7 @@ colored line
44
44
  ✓ actLikeProduction is true when isBuildMode OR UJ_AUDIT_FORCE (0ms)
45
45
  ✓ getRootPath("package") points at UJM root (0ms)
46
46
  ✓ getMemoryUsage returns shape with MB-sized numbers (0ms)
47
- ✓ getArguments returns object with _ array + boolean defaults (0ms)
47
+ ✓ getArguments returns object with _ array + boolean defaults (1ms)
48
48
  ✓ logger returns object with log/error/warn/info methods (0ms)
49
49
  ✓ processBatches processes items in chunks and returns flat results (0ms)
50
50
  ⤷ mergeJekyllConfigs (utils/merge-jekyll-configs.js)
@@ -60,66 +60,66 @@ colored line
60
60
  ✓ getVersion returns a non-empty string when run from a package (0ms)
61
61
  ⤷ createTemplateTransform (utils/template-transform.js)
62
62
  ✓ replaces [site.theme.id] with config value in .html files (1ms)
63
- ✓ leaves non-matching extensions untouched (e.g. .css) (0ms)
63
+ ✓ leaves non-matching extensions untouched (e.g. .css) (1ms)
64
64
  ✓ passes directories through untouched (0ms)
65
65
  ⤷ node-powertools templating brackets ({} and [])
66
- ✓ default { } brackets resolve nested keys (1ms)
66
+ ✓ default { } brackets resolve nested keys (0ms)
67
67
  ✓ [ ] brackets resolve nested keys when explicitly configured (0ms)
68
68
  ✓ [ ] brackets leave Jekyll {{ }} placeholders alone (0ms)
69
69
  ⤷ theme contract (structure, swappability, cross-theme JS contracts)
70
- ✓ _template: entry files + config contract (0ms)
71
- ✓ classy: entry files + config contract (1ms)
70
+ ✓ _template: entry files + config contract (1ms)
71
+ ✓ classy: entry files + config contract (0ms)
72
72
  ✓ neobrutalism: entry files + config contract (0ms)
73
73
  ✓ newsflash: entry files + config contract (0ms)
74
- ✓ _template: layouts swappable, markup clean (2ms)
75
- ✓ classy: layouts swappable, markup clean (15ms)
74
+ ✓ _template: layouts swappable, markup clean (1ms)
75
+ ✓ classy: layouts swappable, markup clean (14ms)
76
76
  ✓ neobrutalism: layouts swappable, markup clean (2ms)
77
- ✓ newsflash: layouts swappable, markup clean (2ms)
77
+ ✓ newsflash: layouts swappable, markup clean (3ms)
78
78
  ✓ _template: cross-theme JS contracts (0ms)
79
- ✓ classy: cross-theme JS contracts (1ms)
80
- ✓ neobrutalism: cross-theme JS contracts (0ms)
81
- ✓ newsflash: cross-theme JS contracts (1ms)
82
- ✓ page asset files match a declared asset_path shape (3ms)
79
+ ✓ classy: cross-theme JS contracts (0ms)
80
+ ✓ neobrutalism: cross-theme JS contracts (1ms)
81
+ ✓ newsflash: cross-theme JS contracts (0ms)
82
+ ✓ page asset files match a declared asset_path shape (4ms)
83
83
  ⤷ validateYAMLFrontMatter (utils/_validate-yaml.js)
84
84
  ✓ returns { valid: true } for a file with valid frontmatter (0ms)
85
85
  ✓ returns { valid: true } when no frontmatter present (1ms)
86
86
  ✓ flags malformed YAML frontmatter as invalid with error message (0ms)
87
87
  ⤷ page-layer baseline (DOM + fetch + storage)
88
88
  ✓ document is interactive or complete (1ms)
89
- ✓ fetch() works against the local harness server (11ms)
90
- ✓ localStorage is available (2ms)
89
+ ✓ fetch() works against the local harness server (8ms)
90
+ ✓ localStorage is available (1ms)
91
91
  ⤷ FormManager getData / setData / input groups
92
- ✓ _setNested builds nested objects from dot paths (1ms)
93
- ✓ _setNested accumulates duplicate keys into arrays (1ms)
92
+ ✓ _setNested builds nested objects from dot paths (0ms)
93
+ ✓ _setNested accumulates duplicate keys into arrays (0ms)
94
94
  ✓ _getNested reads nested values and returns undefined for missing paths (0ms)
95
- ✓ _flattenObject converts nested objects to dot paths (2ms)
96
- ✓ getData collects text, select, radio, and textarea values with dot notation (8ms)
97
- ✓ getData handles single checkbox (boolean) and checkbox groups (object) (1ms)
95
+ ✓ _flattenObject converts nested objects to dot paths (1ms)
96
+ ✓ getData collects text, select, radio, and textarea values with dot notation (5ms)
97
+ ✓ getData handles single checkbox (boolean) and checkbox groups (object) (0ms)
98
98
  ✓ getData excludes honeypot fields (0ms)
99
- ✓ input group filter includes matching + global fields, excludes others (0ms)
99
+ ✓ input group filter includes matching + global fields, excludes others (1ms)
100
100
  ✓ input group filter with multiple groups includes all matching (0ms)
101
- ✓ setData populates text, select, textarea fields (1ms)
101
+ ✓ setData populates text, select, textarea fields (0ms)
102
102
  ✓ setData sets radio group to matching value (0ms)
103
103
  ✓ setData sets single checkbox boolean and checkbox group values (0ms)
104
104
  ⤷ FormManager disabled-state snapshot
105
- ✓ snapshot captures disabled non-submit elements, ignores submit buttons (0ms)
106
- ✓ setDisabled(true) disables everything (1ms)
105
+ ✓ snapshot captures disabled non-submit elements, ignores submit buttons (1ms)
106
+ ✓ setDisabled(true) disables everything (0ms)
107
107
  ✓ setDisabled(false) re-enables managed elements but keeps snapshotted ones disabled (0ms)
108
108
  ✓ survives multiple disable/enable cycles (0ms)
109
- ✓ onsubmit="return false" blocks native submission before FM loads (20ms)
109
+ ✓ onsubmit="return false" blocks native submission before FM loads (10ms)
110
110
  ⤷ FormManager validation + honeypot + file-accept
111
111
  ✓ required text field fails when empty, passes when filled (0ms)
112
- ✓ required checkbox fails when unchecked (0ms)
112
+ ✓ required checkbox fails when unchecked (1ms)
113
113
  ✓ required radio group fails when none checked (0ms)
114
- ✓ email validation rejects invalid formats and accepts valid ones (3ms)
114
+ ✓ email validation rejects invalid formats and accepts valid ones (0ms)
115
115
  ✓ number min/max validation catches out-of-range values (1ms)
116
116
  ✓ minlength and maxlength validation (0ms)
117
117
  ✓ pattern attribute validation (0ms)
118
118
  ✓ honeypot detection catches [data-honey] and [name="honey"] fields (0ms)
119
119
  ✓ honeypot detects data-honey without name="honey" (0ms)
120
- ✓ file-accept matching: extension, wildcard MIME, exact MIME (1ms)
120
+ ✓ file-accept matching: extension, wildcard MIME, exact MIME (0ms)
121
121
  ✓ field error display adds is-invalid class and feedback element (0ms)
122
- ✓ query param population skips UTM/tracking params (0ms)
122
+ ✓ query param population skips UTM/tracking params (1ms)
123
123
  ✓ data-form-state attribute reflects state transitions (0ms)
124
124
  ⤷ harness globals (window.Configuration + dataset)
125
125
  ✓ window.Configuration has brand + theme + web_manager (0ms)
@@ -129,16 +129,16 @@ colored line
129
129
  ✓ template#prerendered-icons exists and has the test icon (1ms)
130
130
  ✓ looking up a missing icon returns null (0ms)
131
131
  ⤷ boot tests (consumer _site/)
132
- ✓ /service-worker.js served with javascript content type (97ms)
133
- ✓ index.html registers SW and reaches activated state (251ms)
134
- ✓ SW responds to get-cache-name message with brand-id pattern (85ms)
135
- ✓ home page renders with title + body content (184ms)
136
- ✓ /about resolves via Jekyll-style .html fallback (71ms)
137
- ✓ build.json is served with brand metadata (78ms)
138
- ✓ CSS bundle served with text/css content type (73ms)
132
+ ✓ /service-worker.js served with javascript content type (130ms)
133
+ ✓ index.html registers SW and reaches activated state (182ms)
134
+ ✓ SW responds to get-cache-name message with brand-id pattern (86ms)
135
+ ✓ home page renders with title + body content (187ms)
136
+ ✓ /about resolves via Jekyll-style .html fallback (73ms)
137
+ ✓ build.json is served with brand metadata (76ms)
138
+ ✓ CSS bundle served with text/css content type (87ms)
139
139
 
140
140
  Results
141
141
  110 passing
142
142
 
143
- Total: 110 tests in 3457ms
143
+ Total: 110 tests in 3274ms
144
144
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {