@graphprotocol/graph-cli 0.57.0-alpha-20230901181226-e70cd5d → 0.57.0-alpha-20230901193203-ec6ff81

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
@@ -1,15 +1,34 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
- ## 0.57.0-alpha-20230901181226-e70cd5d
3
+ ## 0.57.0-alpha-20230901193203-ec6ff81
4
4
 
5
5
  ### Minor Changes
6
6
 
7
+ - [#1439](https://github.com/graphprotocol/graph-tooling/pull/1439)
8
+ [`d022733`](https://github.com/graphprotocol/graph-tooling/commit/d02273337efdcafb3276c8d998988b47352634fa)
9
+ Thanks [@saihaj](https://github.com/saihaj)! - Enable autocomplete for CLI commands. To configure
10
+ run
11
+
12
+ ```bash
13
+ graph autocomplete
14
+ ```
15
+
16
+ and follow the steps in the prompt.
17
+
7
18
  - [#1441](https://github.com/graphprotocol/graph-tooling/pull/1441)
8
19
  [`2e656e9`](https://github.com/graphprotocol/graph-tooling/commit/2e656e9cdaaea6d87866adaa142da597fcd7ce65)
9
20
  Thanks [@saihaj](https://github.com/saihaj)! - show suggestions when an invalid command is entered
10
21
 
11
22
  ### Patch Changes
12
23
 
24
+ - [#1439](https://github.com/graphprotocol/graph-tooling/pull/1439)
25
+ [`4728d76`](https://github.com/graphprotocol/graph-tooling/commit/4728d766f94cf310e712ca336a908513cbb6cf94)
26
+ Thanks [@saihaj](https://github.com/saihaj)! - dependencies updates:
27
+
28
+ - Added dependency
29
+ [`@oclif/plugin-autocomplete@^2.3.6` ↗︎](https://www.npmjs.com/package/@oclif/plugin-autocomplete/v/2.3.6)
30
+ (to `dependencies`)
31
+
13
32
  - [#1441](https://github.com/graphprotocol/graph-tooling/pull/1441)
14
33
  [`2e656e9`](https://github.com/graphprotocol/graph-tooling/commit/2e656e9cdaaea6d87866adaa142da597fcd7ce65)
15
34
  Thanks [@saihaj](https://github.com/saihaj)! - dependencies updates:
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.57.0-alpha-20230901181226-e70cd5d",
2
+ "version": "0.57.0-alpha-20230901193203-ec6ff81",
3
3
  "commands": {
4
4
  "add": {
5
5
  "id": "add",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.57.0-alpha-20230901181226-e70cd5d",
3
+ "version": "0.57.0-alpha-20230901193203-ec6ff81",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {
@@ -21,6 +21,7 @@
21
21
  "dependencies": {
22
22
  "@float-capital/float-subgraph-uncrashable": "^0.0.0-alpha.4",
23
23
  "@oclif/core": "2.8.6",
24
+ "@oclif/plugin-autocomplete": "^2.3.6",
24
25
  "@oclif/plugin-not-found": "^2.4.0",
25
26
  "@whatwg-node/fetch": "^0.8.4",
26
27
  "assemblyscript": "0.19.23",
@@ -55,7 +56,7 @@
55
56
  "@types/semver": "^7.3.13",
56
57
  "@types/which": "^2.0.1",
57
58
  "copyfiles": "^2.4.1",
58
- "jest": "29.6.4",
59
+ "jest": "29.5.0",
59
60
  "oclif": "3.8.1",
60
61
  "spawn-command": "0.0.2-1",
61
62
  "strip-ansi": "6.0.1",
@@ -75,7 +76,8 @@
75
76
  "-v"
76
77
  ],
77
78
  "plugins": [
78
- "@oclif/plugin-not-found"
79
+ "@oclif/plugin-not-found",
80
+ "@oclif/plugin-autocomplete"
79
81
  ]
80
82
  },
81
83
  "scripts": {