From f09aed73a431131dbe4f32cfa70d51459d2eef40 Mon Sep 17 00:00:00 2001 From: dk1a Date: Sun, 6 Aug 2023 09:13:21 +0300 Subject: [PATCH] rename generate-tightcoder script to build:tightcoder --- packages/store/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/store/package.json b/packages/store/package.json index d7014f0f03..5110b51940 100644 --- a/packages/store/package.json +++ b/packages/store/package.json @@ -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", @@ -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" },