diff --git a/packages/eth-transfer-proxy/package.json b/packages/eth-transfer-proxy/package.json index 33fdfd2..430e473 100644 --- a/packages/eth-transfer-proxy/package.json +++ b/packages/eth-transfer-proxy/package.json @@ -36,7 +36,8 @@ "build:esm": "yarn clean:esm && tsc --outDir ./dist/esm --sourceMap", "build:types": "yarn clean:types && tsc --declarationDir ./dist/types --emitDeclarationOnly --declaration --declarationMap", "build:ts": "yarn build:cjs && yarn build:esm && yarn build:types", - "build": "yarn build:forge && yarn build:gen && yarn build:ts", + "build:all": "yarn build:forge && yarn build:gen && yarn build:ts # we omit forge from standard 'yarn build' so that clients who only want eg. grpc service don't need to install forge to make a root `yarn build` succeed", + "build": "yarn build:ts", "build:dev": "yarn build # NB eth-transfer-proxy has no dev build, but we include this so that the root build:dev task works for all packages", "build:prod-test": "yarn build # NB eth-transfer-proxy has no prod-test build, but we include this so that the root build:prod-test task works for all packages", "deploy:local": "PRIVATE_KEY='' MNEMONIC='' forge script script/Deploy.s.sol --broadcast --fork-url http://localhost:8545",