Skip to content

Commit 0abe931

Browse files
committed
fix(issuance): remove redundant compilation from test build script
The build:dep step already compiles @graphprotocol/issuance as a dependency, so the explicit --filter @graphprotocol/issuance compile in build:self was redundant and inefficient. Now follows the same pattern as packages/contracts/test which only builds dependencies without redundant compilation steps.
1 parent 25d88b6 commit 0abe931

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/issuance/test/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
"scripts": {
4646
"build": "pnpm build:dep && pnpm build:self",
4747
"build:dep": "pnpm --filter '@graphprotocol/issuance-test^...' run build:self",
48-
"build:self": "tsc --build && pnpm --filter @graphprotocol/issuance compile && pnpm generate:interfaces",
48+
"build:self": "tsc --build && pnpm generate:interfaces",
4949
"generate:interfaces": "node scripts/generateInterfaceIds.js --silent",
5050
"clean": "rm -rf build",
5151
"test": "pnpm build && pnpm test:self",

0 commit comments

Comments
 (0)