@graphprotocol/graph-cli 0.93.2 → 0.93.3
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/init.js +1 -1
- 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.93.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1875](https://github.com/graphprotocol/graph-tooling/pull/1875)
|
|
8
|
+
[`675a89a`](https://github.com/graphprotocol/graph-tooling/commit/675a89a0f060f241f3da15542d6a7f497d5fcf5b)
|
|
9
|
+
Thanks [@YaroShkvorets](https://github.com/YaroShkvorets)! - fix flag startup bug
|
|
10
|
+
|
|
3
11
|
## 0.93.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/dist/commands/init.js
CHANGED
|
@@ -107,7 +107,7 @@ export default class InitCommand extends Command {
|
|
|
107
107
|
if (skipGit) {
|
|
108
108
|
this.warn('The --skip-git flag will be removed in the next major version. By default we will stop initializing a Git repository.');
|
|
109
109
|
}
|
|
110
|
-
if ((
|
|
110
|
+
if ((fromContract || spkgPath) && !network && !fromExample) {
|
|
111
111
|
this.error('--network is required when using --from-contract or --spkg');
|
|
112
112
|
}
|
|
113
113
|
const { node } = chooseNodeUrl({
|
package/oclif.manifest.json
CHANGED