@thegetty/quire-cli 1.0.0-rc.52 → 1.0.0-rc.54
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/package.json +4 -5
- package/src/lib/11ty/cli.js +2 -2
- package/src/lib/quire/index.js +0 -2
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.54",
|
|
5
5
|
"author": "Getty Digital",
|
|
6
6
|
"license": "SEE LICENSE IN https://github.com/thegetty/quire/blob/main/LICENSE",
|
|
7
7
|
"bugs": {
|
|
@@ -53,22 +53,21 @@
|
|
|
53
53
|
"commander": "^12.1.0",
|
|
54
54
|
"conf": "^13.1.0",
|
|
55
55
|
"cross-env": "^7.0.3",
|
|
56
|
-
"del": "^
|
|
56
|
+
"del": "^8.0.1",
|
|
57
57
|
"epubjs-cli": "^0.1.6",
|
|
58
|
-
"execa": "^6.1
|
|
58
|
+
"execa": "^9.6.1",
|
|
59
59
|
"fs-extra": "^11.1.0",
|
|
60
60
|
"hosted-git-info": "^6.1.1",
|
|
61
61
|
"i18next": "^22.4.9",
|
|
62
62
|
"inquirer": "^9.1.4",
|
|
63
63
|
"js-yaml": "^4.1.0",
|
|
64
64
|
"loglevel": "^1.8.1",
|
|
65
|
-
"node-fetch": "^3.3.2",
|
|
66
65
|
"open": "^8.4.0",
|
|
67
66
|
"ora": "^6.1.2",
|
|
68
67
|
"pagedjs-cli": "^0.4.3",
|
|
69
68
|
"read-package-up": "^11.0.0",
|
|
70
69
|
"semver": "^7.3.8",
|
|
71
|
-
"simple-git": "^3.
|
|
70
|
+
"simple-git": "^3.36.0",
|
|
72
71
|
"update-notifier": "^7.3.1"
|
|
73
72
|
},
|
|
74
73
|
"devDependencies": {
|
package/src/lib/11ty/cli.js
CHANGED
|
@@ -87,7 +87,7 @@ export default {
|
|
|
87
87
|
all: true,
|
|
88
88
|
cwd: projectRoot,
|
|
89
89
|
env,
|
|
90
|
-
|
|
90
|
+
nodePath: process.execPath
|
|
91
91
|
})
|
|
92
92
|
build.all.pipe(process.stdout)
|
|
93
93
|
await build
|
|
@@ -112,7 +112,7 @@ export default {
|
|
|
112
112
|
all: true,
|
|
113
113
|
cwd: projectRoot,
|
|
114
114
|
env,
|
|
115
|
-
|
|
115
|
+
nodePath: process.execPath
|
|
116
116
|
}).all.pipe(process.stdout)
|
|
117
117
|
}
|
|
118
118
|
}
|
package/src/lib/quire/index.js
CHANGED
|
@@ -4,7 +4,6 @@ import { execa, execaCommand } from 'execa'
|
|
|
4
4
|
import { fileURLToPath } from 'node:url'
|
|
5
5
|
import { isEmpty } from '#helpers/is-empty.js'
|
|
6
6
|
import config from '#lib/conf/config.js'
|
|
7
|
-
import fetch from 'node-fetch'
|
|
8
7
|
import fs from 'fs-extra'
|
|
9
8
|
import git from '#lib/git/index.js'
|
|
10
9
|
import packageConfig from '#src/packageConfig.js'
|
|
@@ -199,7 +198,6 @@ async function installInProject(projectPath, quireVersion, options = {}) {
|
|
|
199
198
|
* these must be `devDependencies` so that they are not bundled into
|
|
200
199
|
* the final `_site` package when running `quire build`
|
|
201
200
|
*/
|
|
202
|
-
await execaCommand('npm cache clean --force', { cwd: projectPath })
|
|
203
201
|
try {
|
|
204
202
|
await execaCommand('npm install --save-dev', { cwd: projectPath })
|
|
205
203
|
} catch(error) {
|