@herodevs/cli 2.0.0-beta.5 → 2.0.0-beta.6
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/README.md +2 -2
- package/dist/api/nes.client.js +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -33,11 +33,11 @@ The CLI is designed to be non-invasive:
|
|
|
33
33
|
## Usage
|
|
34
34
|
<!-- usage -->
|
|
35
35
|
```sh-session
|
|
36
|
-
$ npm install -g @herodevs/cli
|
|
36
|
+
$ npm install -g @herodevs/cli@beta
|
|
37
37
|
$ hd COMMAND
|
|
38
38
|
running command...
|
|
39
39
|
$ hd (--version)
|
|
40
|
-
@herodevs/cli/2.0.0-beta.
|
|
40
|
+
@herodevs/cli/2.0.0-beta.6 darwin-arm64 node-v22.18.0
|
|
41
41
|
$ hd --help [COMMAND]
|
|
42
42
|
USAGE
|
|
43
43
|
$ hd COMMAND
|
package/dist/api/nes.client.js
CHANGED
|
@@ -3,7 +3,7 @@ import { config } from "../config/constants.js";
|
|
|
3
3
|
import { debugLogger } from "../service/log.svc.js";
|
|
4
4
|
import { createReportMutation, getEolReportQuery } from "./gql-operations.js";
|
|
5
5
|
export const createApollo = (uri) => new ApolloClient({
|
|
6
|
-
cache: new InMemoryCache(
|
|
6
|
+
cache: new InMemoryCache(),
|
|
7
7
|
defaultOptions: {
|
|
8
8
|
query: { fetchPolicy: 'no-cache' },
|
|
9
9
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@herodevs/cli",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.6",
|
|
4
4
|
"author": "HeroDevs, Inc",
|
|
5
5
|
"bin": {
|
|
6
6
|
"hd": "./bin/run.js"
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"format": "biome format --write",
|
|
24
24
|
"lint": "biome lint --write",
|
|
25
25
|
"postpack": "shx rm -f oclif.manifest.json",
|
|
26
|
-
"prepare": "npm run build",
|
|
27
|
-
"prepack": "oclif manifest
|
|
26
|
+
"prepare": "shx test -d dist || npm run build",
|
|
27
|
+
"prepack": "oclif manifest",
|
|
28
28
|
"pretest": "npm run lint && npm run typecheck",
|
|
29
29
|
"readme": "npm run ci:fix && npm run build && npm exec oclif readme",
|
|
30
30
|
"test": "globstar -- node --import tsx --test --experimental-test-module-mocks \"test/**/*.test.ts\"",
|