@thegetty/quire-cli 1.0.0-rc.54 → 1.0.0-rc.55
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 +29 -0
- package/package.json +2 -2
- package/src/lib/11ty/api.js +1 -0
- package/src/lib/11ty/cli.js +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -12,6 +12,35 @@ 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.55]
|
|
16
|
+
|
|
17
|
+
### Bumped
|
|
18
|
+
|
|
19
|
+
- `epubjs-cli` to `0.2.4`
|
|
20
|
+
|
|
21
|
+
## [1.0.0-rc.54]
|
|
22
|
+
|
|
23
|
+
### Bumped
|
|
24
|
+
|
|
25
|
+
- `del` to 8.0.1
|
|
26
|
+
- `execa` to 9.6.1
|
|
27
|
+
- `simple-git` to 3.36.0
|
|
28
|
+
- Removed `node-fetch` as no longer needed.
|
|
29
|
+
|
|
30
|
+
### Changed
|
|
31
|
+
|
|
32
|
+
- Behavior of `quire new` to not force-dump `npm` cache before depenedncy install.
|
|
33
|
+
|
|
34
|
+
## [1.0.0-rc.53]
|
|
35
|
+
|
|
36
|
+
### Added
|
|
37
|
+
|
|
38
|
+
- `quire validate` command for validating publication configurations. Thanks @andy-jdl!
|
|
39
|
+
|
|
40
|
+
## Fixed
|
|
41
|
+
|
|
42
|
+
- Removes package tarballs downloaded during `quire new` commands.
|
|
43
|
+
|
|
15
44
|
## [1.0.0-rc.33]
|
|
16
45
|
|
|
17
46
|
### Bumped
|
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.55",
|
|
5
5
|
"author": "Getty Digital",
|
|
6
6
|
"license": "SEE LICENSE IN https://github.com/thegetty/quire/blob/main/LICENSE",
|
|
7
7
|
"bugs": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"conf": "^13.1.0",
|
|
55
55
|
"cross-env": "^7.0.3",
|
|
56
56
|
"del": "^8.0.1",
|
|
57
|
-
"epubjs-cli": "^0.
|
|
57
|
+
"epubjs-cli": "^0.2.4",
|
|
58
58
|
"execa": "^9.6.1",
|
|
59
59
|
"fs-extra": "^11.1.0",
|
|
60
60
|
"hosted-git-info": "^6.1.1",
|
package/src/lib/11ty/api.js
CHANGED
|
@@ -42,6 +42,7 @@ const factory = async (options = {}) => {
|
|
|
42
42
|
process.env.ELEVENTY_DATA = paths.data
|
|
43
43
|
process.env.ELEVENTY_INCLUDES = paths.includes
|
|
44
44
|
process.env.ELEVENTY_LAYOUTS = paths.layouts
|
|
45
|
+
process.env.QUIRE_DEBUG_LOG = options.debug
|
|
45
46
|
|
|
46
47
|
/**
|
|
47
48
|
* Get an instance of the runtime of eleventy.
|
package/src/lib/11ty/cli.js
CHANGED