@graphprotocol/graph-cli 0.45.0-alpha-20230404094958-e618363 → 0.45.0-alpha-20230404134925-bfd3b8e
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 +1 -8
- package/bin/graph.cmd +3 -0
- package/oclif.manifest.json +1 -1
- package/package.json +6 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @graphprotocol/graph-cli
|
|
2
2
|
|
|
3
|
-
## 0.45.0-alpha-
|
|
3
|
+
## 0.45.0-alpha-20230404134925-bfd3b8e
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -110,13 +110,6 @@
|
|
|
110
110
|
- Updated dependency [`glob@9.3.4` ↗︎](https://www.npmjs.com/package/glob/v/9.3.4) (from `7.1.6`,
|
|
111
111
|
in `dependencies`)
|
|
112
112
|
|
|
113
|
-
- [#1255](https://github.com/graphprotocol/graph-tooling/pull/1255)
|
|
114
|
-
[`e618363`](https://github.com/graphprotocol/graph-tooling/commit/e618363ff2c5fe07989b342ebd8196bd112eff0f)
|
|
115
|
-
Thanks [@renovate](https://github.com/apps/renovate)! - dependencies updates:
|
|
116
|
-
|
|
117
|
-
- Updated dependency [`which@3.0.0` ↗︎](https://www.npmjs.com/package/which/v/3.0.0) (from
|
|
118
|
-
`2.0.2`, in `dependencies`)
|
|
119
|
-
|
|
120
113
|
- [#1207](https://github.com/graphprotocol/graph-tooling/pull/1207)
|
|
121
114
|
[`ad275b3`](https://github.com/graphprotocol/graph-tooling/commit/ad275b31e635dab03cfefda00617ef9f612b01c0)
|
|
122
115
|
Thanks [@saihaj](https://github.com/saihaj)! - bring back short hand for version and help
|
package/bin/graph.cmd
ADDED
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphprotocol/graph-cli",
|
|
3
|
-
"version": "0.45.0-alpha-
|
|
3
|
+
"version": "0.45.0-alpha-20230404134925-bfd3b8e",
|
|
4
4
|
"description": "CLI for building for and deploying to The Graph",
|
|
5
5
|
"license": "(Apache-2.0 OR MIT)",
|
|
6
6
|
"engines": {
|
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
"main": "dist/index.js",
|
|
13
13
|
"files": [
|
|
14
14
|
"CHANGELOG.md",
|
|
15
|
+
"bin",
|
|
15
16
|
"dist",
|
|
16
17
|
"oclif.manifest.json",
|
|
17
18
|
"README.md"
|
|
@@ -41,7 +42,7 @@
|
|
|
41
42
|
"sync-request": "6.1.0",
|
|
42
43
|
"tmp-promise": "3.0.3",
|
|
43
44
|
"web3-eth-abi": "1.7.0",
|
|
44
|
-
"which": "
|
|
45
|
+
"which": "2.0.2",
|
|
45
46
|
"yaml": "1.10.2"
|
|
46
47
|
},
|
|
47
48
|
"devDependencies": {
|
|
@@ -50,7 +51,7 @@
|
|
|
50
51
|
"@types/jest": "^26.0.24",
|
|
51
52
|
"@types/js-yaml": "^3.12.7",
|
|
52
53
|
"@types/semver": "^7.3.13",
|
|
53
|
-
"@types/which": "^
|
|
54
|
+
"@types/which": "^2.0.1",
|
|
54
55
|
"copyfiles": "^2.4.1",
|
|
55
56
|
"jest": "26.6.3",
|
|
56
57
|
"oclif": "3.7.3",
|
|
@@ -73,7 +74,8 @@
|
|
|
73
74
|
]
|
|
74
75
|
},
|
|
75
76
|
"scripts": {
|
|
76
|
-
"build": "tsc -b tsconfig.build.json && oclif manifest && copyfiles -u 1 src/**/*.graphql dist/ && chmod +x ./dist/bin.js",
|
|
77
|
+
"build": "tsc -b tsconfig.build.json && oclif manifest && oclif readme && copyfiles -u 1 src/**/*.graphql dist/ && chmod +x ./dist/bin.js",
|
|
78
|
+
"oclif:pack": "npm pack && pnpm oclif pack tarballs --no-xz",
|
|
77
79
|
"test": "jest --verbose",
|
|
78
80
|
"test:init": "jest tests/cli/init.test.ts --verbose",
|
|
79
81
|
"test:validation": "jest tests/cli/validation.test.ts --verbose",
|