@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 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
@@ -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 ((!fromContract || !spkgPath) && !network && !fromExample) {
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({
@@ -1011,5 +1011,5 @@
1011
1011
  ]
1012
1012
  }
1013
1013
  },
1014
- "version": "0.93.2"
1014
+ "version": "0.93.3"
1015
1015
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@graphprotocol/graph-cli",
3
- "version": "0.93.2",
3
+ "version": "0.93.3",
4
4
  "type": "module",
5
5
  "description": "CLI for building for and deploying to The Graph",
6
6
  "license": "(Apache-2.0 OR MIT)",