Skip to content

Commit

Permalink
Don't depend on forge to run 'yarn build' in root
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanberckmans committed Jul 13, 2024
1 parent 31f10e3 commit 3fc2da3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/eth-transfer-proxy/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 3fc2da3

Please sign in to comment.