@thegetty/quire-cli 1.0.0-rc.16 → 1.0.0-rc.17

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
@@ -12,6 +12,16 @@ 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.16]
16
+
17
+ ### Changed
18
+
19
+ - Patch for `install-npm-version@8.0.0`; see https://nodejs.org/en/blog/vulnerability/april-2024-security-releases-2
20
+
21
+ ### Fixed
22
+
23
+ - Dependency instal error on Windows when running quire new DEV-19124
24
+
15
25
  ## [1.0.0-rc.12]
16
26
 
17
27
  ### Added
package/README.md CHANGED
@@ -2,6 +2,20 @@
2
2
 
3
3
  The `quire-cli` implements the [command pattern](https://en.wikipedia.org/wiki/Command_pattern) to receive input from a user and delegate command behavoir to modules for the services, such as `git` and `11ty`, involved in working on Quire publications.
4
4
 
5
+ ### Installing the CLI
6
+
7
+ The `quire-cli` can be installed as a global npm module as follows
8
+
9
+ ```sh
10
+ npm install quire-cli --global
11
+ ```
12
+
13
+ Installing the `quire-cli` as a _local package dependency_ requires additional npm command flags to support patching package dependencies as follows,
14
+
15
+ ```sh
16
+ npm install quire-cli --install-strategy=nested
17
+ ```
18
+
5
19
  ### Using the CLI
6
20
 
7
21
  `npx` supports executing npm package binaries even when they are not yet installed and will download the package into a cache if it does not find either a locally or globally installed version. Simply run
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.16",
4
+ "version": "1.0.0-rc.17",
5
5
  "author": "Getty Digital",
6
6
  "license": "SEE LICENSE IN https://github.com/thegetty/quire/blob/main/LICENSE",
7
7
  "bugs": {
@@ -60,7 +60,7 @@
60
60
  "hosted-git-info": "^6.1.1",
61
61
  "i18next": "^22.4.9",
62
62
  "inquirer": "^9.1.4",
63
- "install-npm-version": "^1.0.8",
63
+ "install-npm-version": "^1.0.9",
64
64
  "js-yaml": "^4.1.0",
65
65
  "loglevel": "^1.8.1",
66
66
  "open": "^8.4.0",
package/patches/README.md CHANGED
@@ -3,3 +3,17 @@
3
3
  Patches in this directory are applied to locally installed `node_modules` by the npm `postinstall` script ([npm scripts docs](https://docs.npmjs.com/cli/v10/using-npm/scripts)).
4
4
 
5
5
  See [`patch-package`](https://github.com/ds300/patch-package) documenation for [making](https://github.com/ds300/patch-package#making-patches), [updating](https://github.com/ds300/patch-package#updating-patches), [applying](https://github.com/ds300/patch-package#applying-patches) and [reversing](https://github.com/ds300/patch-package#applying-patches) patches.
6
+
7
+ *Nota bene*
8
+
9
+ Patching the `quire-cli` package dependencies changes the way in which it must be must be installed. When installing the `quire-cli` as a _local package dependency_ the `--install-strategy=nested` flag must be used as follows
10
+
11
+ ```sh
12
+ npm install quire-cli --install-strategy=nested
13
+ ```
14
+
15
+ Installing the `quire-cli` as a global npm module has not changed,
16
+
17
+ ```sh
18
+ npm install quire-cli --global
19
+ ```