File tree Expand file tree Collapse file tree 6 files changed +29
-213
lines changed Expand file tree Collapse file tree 6 files changed +29
-213
lines changed Original file line number Diff line number Diff line change 23
23
"lint:fix" : " pnpm lint:prettier:fix && pnpm lint:eslint:fix" ,
24
24
"lint:prettier" : " prettier -c ." ,
25
25
"lint:prettier:fix" : " prettier . --write" ,
26
+ "lint:renovate" : " npx --yes --package renovate -- renovate-config-validator" ,
26
27
"release" : " pnpm build && changeset publish" ,
27
28
"test:cli" : " pnpm --filter @graphprotocol/graph-cli test" ,
28
29
"test:ts" : " pnpm --filter @graphprotocol/graph-ts test" ,
Original file line number Diff line number Diff line change 39
39
"@whatwg-node/fetch" : " ^0.10.1" ,
40
40
"assemblyscript" : " 0.27.31" ,
41
41
"binary-install" : " ^1.1.0" ,
42
- "chalk" : " 5.3.0" ,
43
42
"chokidar" : " 4.0.1" ,
44
43
"debug" : " 4.3.7" ,
45
44
"docker-compose" : " 1.1.0" ,
52
51
"js-yaml" : " 4.1.0" ,
53
52
"kubo-rpc-client" : " ^5.0.2" ,
54
53
"open" : " 10.1.0" ,
55
- "prettier" : " 3.4.2" ,
56
54
"semver" : " 7.6.3" ,
57
55
"tmp-promise" : " 3.0.3" ,
58
56
"web3-eth-abi" : " 4.4.1" ,
59
- "which" : " 5.0.0" ,
60
57
"yaml" : " 2.6.1"
61
58
},
62
59
"devDependencies" : {
Original file line number Diff line number Diff line change 1
1
import crypto from 'node:crypto' ;
2
2
import path from 'node:path' ;
3
- import chalk from 'chalk' ;
4
3
import fs from 'fs-extra' ;
5
4
import * as toolbox from 'gluegun' ;
6
5
import immutable from 'immutable' ;
@@ -138,7 +137,7 @@ export default class Compiler {
138
137
139
138
completed ( ipfsHashOrPath : string ) {
140
139
toolbox . print . info ( '' ) ;
141
- toolbox . print . success ( `Build completed: ${ chalk . blue ( ipfsHashOrPath ) } ` ) ;
140
+ toolbox . print . success ( `Build completed: ${ toolbox . print . colors . blue ( ipfsHashOrPath ) } ` ) ;
142
141
toolbox . print . info ( '' ) ;
143
142
}
144
143
You can’t perform that action at this time.
0 commit comments