@graphprotocol/graph-cli 0.44.0 → 0.45.0-alpha-20230329190855-a394fcb

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,19 @@
1
1
  # @graphprotocol/graph-cli
2
2
 
3
+ ## 0.45.0-alpha-20230329190855-a394fcb
4
+
5
+ ### Minor Changes
6
+
7
+ - [#1209](https://github.com/graphprotocol/graph-tooling/pull/1209)
8
+ [`f26398e`](https://github.com/graphprotocol/graph-tooling/commit/f26398e054c556f414a1b45e92b7e4007a9b5a79)
9
+ Thanks [@kalloc](https://github.com/kalloc)! - Support `ts` typing in tests folder
10
+
11
+ ### Patch Changes
12
+
13
+ - [#1207](https://github.com/graphprotocol/graph-tooling/pull/1207)
14
+ [`ad275b3`](https://github.com/graphprotocol/graph-tooling/commit/ad275b31e635dab03cfefda00617ef9f612b01c0)
15
+ Thanks [@saihaj](https://github.com/saihaj)! - bring back short hand for version and help
16
+
3
17
  ## 0.44.0
4
18
 
5
19
  ### Minor Changes
@@ -77,7 +77,7 @@ dataSources:
77
77
  generateTsConfig() {
78
78
  return prettier_1.default.format(JSON.stringify({
79
79
  extends: '@graphprotocol/graph-ts/types/tsconfig.base.json',
80
- include: ['src'],
80
+ include: ['src', 'tests'],
81
81
  }), { parser: 'json' });
82
82
  }
83
83
  generateMappings() {
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.44.0",
2
+ "version": "0.45.0-alpha-20230329190855-a394fcb",
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.44.0",
3
+ "version": "0.45.0-alpha-20230329190855-a394fcb",
4
4
  "description": "CLI for building for and deploying to The Graph",
5
5
  "license": "(Apache-2.0 OR MIT)",
6
6
  "engines": {
@@ -56,7 +56,7 @@
56
56
  "jest": "26.0.0",
57
57
  "oclif": "3.6.1",
58
58
  "spawn-command": "0.0.2-1",
59
- "strip-ansi": "6.0.0",
59
+ "strip-ansi": "6.0.1",
60
60
  "tern": "0.24.3",
61
61
  "typescript": "^4.9.4"
62
62
  },
@@ -65,7 +65,13 @@
65
65
  },
66
66
  "oclif": {
67
67
  "bin": "graph",
68
- "commands": "./dist/commands"
68
+ "commands": "./dist/commands",
69
+ "additionalHelpFlags": [
70
+ "-h"
71
+ ],
72
+ "additionalVersionFlags": [
73
+ "-v"
74
+ ]
69
75
  },
70
76
  "scripts": {
71
77
  "build": "tsc -b tsconfig.build.json && oclif manifest && copyfiles -u 1 src/**/*.graphql dist/ && chmod +x ./dist/bin.js",