Skip to content

Commit

Permalink
rename generate-tightcoder script to build:tightcoder
Browse files Browse the repository at this point in the history
  • Loading branch information
dk1a committed Aug 6, 2023
1 parent b2101cf commit f09aed7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/store/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,11 @@
}
},
"scripts": {
"build": "pnpm run generate-tightcoder && pnpm run build:mud && pnpm run build:abi && pnpm run build:typechain && pnpm run build:js",
"build": "pnpm run build:tightcoder && pnpm run build:mud && pnpm run build:abi && pnpm run build:typechain && pnpm run build:js",
"build:abi": "forge build --extra-output-files abi --out abi --skip test script MudTest.sol",
"build:js": "tsup",
"build:mud": "tsx ./ts/scripts/tablegen.ts",
"build:tightcoder": "tsx ./ts/scripts/generate-tightcoder.ts",
"build:typechain": "typechain --target ethers-v5 'abi/**/*.sol/!(*.abi).json'",
"clean": "pnpm run clean:abi && pnpm run clean:js && pnpm run clean:mud && pnpm run clean:typechain",
"clean:abi": "rimraf abi",
Expand All @@ -46,7 +47,6 @@
"clean:typechain": "rimraf types",
"dev": "tsup --watch",
"gas-report": "mud-gas-report --save gas-report.json",
"generate-tightcoder": "tsx ./ts/scripts/generate-tightcoder.ts",
"lint": "solhint --config ./.solhint.json 'src/**/*.sol'",
"test": "vitest typecheck --run && vitest --run --passWithNoTests && forge test"
},
Expand Down

0 comments on commit f09aed7

Please sign in to comment.