@graphprotocol/graph-cli 0.74.0 → 0.74.1
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 +8 -0
- package/dist/commands/auth.js +0 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
+
## 0.74.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1683](https://github.com/graphprotocol/graph-tooling/pull/1683)
|
|
8
|
+
[`f5bfa07`](https://github.com/graphprotocol/graph-tooling/commit/f5bfa07e04c0c70ed3285db4e90bf99cfdb265a3)
|
|
9
|
+
Thanks [@azf20](https://github.com/azf20)! - fix graph auth
|
|
10
|
+
|
|
3
11
|
## 0.74.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/dist/commands/auth.js
CHANGED
|
@@ -23,8 +23,6 @@ class AuthCommand extends core_1.Command {
|
|
|
23
23
|
(await core_1.ux.prompt('Which product to initialize?', {
|
|
24
24
|
required: true,
|
|
25
25
|
}));
|
|
26
|
-
// Poor var naming will cleanup later
|
|
27
|
-
({ node } = (0, node_1.chooseNodeUrl)({ product: node, studio: false }));
|
|
28
26
|
// eslint-disable-next-line -- prettier has problems with ||=
|
|
29
27
|
deployKey =
|
|
30
28
|
deployKey ||
|
package/oclif.manifest.json
CHANGED