@thegetty/quire-cli 1.0.0-rc.32 → 1.0.0-rc.33
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 +2 -2
- package/src/lib/11ty/cli.js +8 -2
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,12 @@ Changelog entries are classified using the following labels:
|
|
|
12
12
|
- `Fixed`: for any bug fixes
|
|
13
13
|
- `Removed`: for deprecated features removed in this release
|
|
14
14
|
|
|
15
|
+
## [1.0.0-rc.33]
|
|
16
|
+
|
|
17
|
+
### Bumped
|
|
18
|
+
|
|
19
|
+
- Bumped minimum supported node engine verison to 22.
|
|
20
|
+
|
|
15
21
|
## [1.0.0-rc.31]
|
|
16
22
|
|
|
17
23
|
### Changed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thegetty/quire-cli",
|
|
3
3
|
"description": "Quire command-line interface",
|
|
4
|
-
"version": "1.0.0-rc.
|
|
4
|
+
"version": "1.0.0-rc.33",
|
|
5
5
|
"author": "Getty Digital",
|
|
6
6
|
"license": "SEE LICENSE IN https://github.com/thegetty/quire/blob/main/LICENSE",
|
|
7
7
|
"bugs": {
|
|
@@ -76,6 +76,6 @@
|
|
|
76
76
|
"jsdoc-to-markdown": "^9.1.1"
|
|
77
77
|
},
|
|
78
78
|
"engines": {
|
|
79
|
-
"node": ">=
|
|
79
|
+
"node": ">=22"
|
|
80
80
|
}
|
|
81
81
|
}
|
package/src/lib/11ty/cli.js
CHANGED
|
@@ -83,12 +83,18 @@ export default {
|
|
|
83
83
|
|
|
84
84
|
env.ELEVENTY_ENV = 'production'
|
|
85
85
|
|
|
86
|
-
|
|
86
|
+
const build = execa('node', command, {
|
|
87
87
|
all: true,
|
|
88
88
|
cwd: projectRoot,
|
|
89
89
|
env,
|
|
90
90
|
execPath: process.execPath
|
|
91
|
-
})
|
|
91
|
+
})
|
|
92
|
+
build.all.pipe(process.stdout)
|
|
93
|
+
await build
|
|
94
|
+
|
|
95
|
+
if (build.exitCode !== 0) {
|
|
96
|
+
process.exit(build.exitCode)
|
|
97
|
+
}
|
|
92
98
|
},
|
|
93
99
|
|
|
94
100
|
serve: async (options = {}) => {
|