Skip to content

Commit

Permalink
Remove unnecessary dependencies (#1837)
Browse files Browse the repository at this point in the history
* remove superfluous dependencies

* streamline renovate config

* lint
  • Loading branch information
YaroShkvorets authored Dec 15, 2024
1 parent ff68a2d commit 91766cd
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 213 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"lint:fix": "pnpm lint:prettier:fix && pnpm lint:eslint:fix",
"lint:prettier": "prettier -c .",
"lint:prettier:fix": "prettier . --write",
"lint:renovate": "npx --yes --package renovate -- renovate-config-validator",
"release": "pnpm build && changeset publish",
"test:cli": "pnpm --filter @graphprotocol/graph-cli test",
"test:ts": "pnpm --filter @graphprotocol/graph-ts test",
Expand Down
3 changes: 0 additions & 3 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@
"@whatwg-node/fetch": "^0.10.1",
"assemblyscript": "0.27.31",
"binary-install": "^1.1.0",
"chalk": "5.3.0",
"chokidar": "4.0.1",
"debug": "4.3.7",
"docker-compose": "1.1.0",
Expand All @@ -52,11 +51,9 @@
"js-yaml": "4.1.0",
"kubo-rpc-client": "^5.0.2",
"open": "10.1.0",
"prettier": "3.4.2",
"semver": "7.6.3",
"tmp-promise": "3.0.3",
"web3-eth-abi": "4.4.1",
"which": "5.0.0",
"yaml": "2.6.1"
},
"devDependencies": {
Expand Down
3 changes: 1 addition & 2 deletions packages/cli/src/compiler/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import crypto from 'node:crypto';
import path from 'node:path';
import chalk from 'chalk';
import fs from 'fs-extra';
import * as toolbox from 'gluegun';
import immutable from 'immutable';
Expand Down Expand Up @@ -138,7 +137,7 @@ export default class Compiler {

completed(ipfsHashOrPath: string) {
toolbox.print.info('');
toolbox.print.success(`Build completed: ${chalk.blue(ipfsHashOrPath)}`);
toolbox.print.success(`Build completed: ${toolbox.print.colors.blue(ipfsHashOrPath)}`);
toolbox.print.info('');
}

Expand Down
Loading

0 comments on commit 91766cd

Please sign in to comment.