Skip to content

Commit 91766cd

Browse files
Remove unnecessary dependencies (#1837)
* remove superfluous dependencies * streamline renovate config * lint
1 parent ff68a2d commit 91766cd

File tree

6 files changed

+29
-213
lines changed

6 files changed

+29
-213
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"lint:fix": "pnpm lint:prettier:fix && pnpm lint:eslint:fix",
2424
"lint:prettier": "prettier -c .",
2525
"lint:prettier:fix": "prettier . --write",
26+
"lint:renovate": "npx --yes --package renovate -- renovate-config-validator",
2627
"release": "pnpm build && changeset publish",
2728
"test:cli": "pnpm --filter @graphprotocol/graph-cli test",
2829
"test:ts": "pnpm --filter @graphprotocol/graph-ts test",

packages/cli/package.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@
3939
"@whatwg-node/fetch": "^0.10.1",
4040
"assemblyscript": "0.27.31",
4141
"binary-install": "^1.1.0",
42-
"chalk": "5.3.0",
4342
"chokidar": "4.0.1",
4443
"debug": "4.3.7",
4544
"docker-compose": "1.1.0",
@@ -52,11 +51,9 @@
5251
"js-yaml": "4.1.0",
5352
"kubo-rpc-client": "^5.0.2",
5453
"open": "10.1.0",
55-
"prettier": "3.4.2",
5654
"semver": "7.6.3",
5755
"tmp-promise": "3.0.3",
5856
"web3-eth-abi": "4.4.1",
59-
"which": "5.0.0",
6057
"yaml": "2.6.1"
6158
},
6259
"devDependencies": {

packages/cli/src/compiler/index.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import crypto from 'node:crypto';
22
import path from 'node:path';
3-
import chalk from 'chalk';
43
import fs from 'fs-extra';
54
import * as toolbox from 'gluegun';
65
import immutable from 'immutable';
@@ -138,7 +137,7 @@ export default class Compiler {
138137

139138
completed(ipfsHashOrPath: string) {
140139
toolbox.print.info('');
141-
toolbox.print.success(`Build completed: ${chalk.blue(ipfsHashOrPath)}`);
140+
toolbox.print.success(`Build completed: ${toolbox.print.colors.blue(ipfsHashOrPath)}`);
142141
toolbox.print.info('');
143142
}
144143

0 commit comments

Comments
 (0)