Skip to content

Commit

Permalink
fix: correct asc build output option
Browse files Browse the repository at this point in the history
  • Loading branch information
twoeths committed Feb 29, 2024
1 parent 507d732 commit c091c91
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file modified packages/as-sha256/build/optimized.wasm
Binary file not shown.
Binary file modified packages/as-sha256/build/untouched.wasm
Binary file not shown.
4 changes: 2 additions & 2 deletions packages/as-sha256/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"scripts": {
"clean": "rm -rf ./dist && node -r ts-node/register ./scripts/codegen.ts",
"build": "yarn asbuild:untouched && yarn asbuild:optimized && yarn build:lib",
"asbuild:untouched": "asc assembly/index.ts -b build/untouched.wasm -t build/untouched.wat --runtime minimal --target debug",
"asbuild:optimized": "asc assembly/index.ts -b build/optimized.wasm -t build/optimized.wat --runtime minimal --target release --noAssert",
"asbuild:untouched": "asc assembly/index.ts -o build/untouched.wasm -t build/untouched.wat --runtime minimal --target debug",
"asbuild:optimized": "asc assembly/index.ts -o build/optimized.wasm -t build/optimized.wat --runtime minimal --target release --noAssert",
"build:lib": "run -T tsc -p tsconfig.build.json",
"build:web": "run -T webpack --mode production --entry ./index.js --output ./dist/as-sha256.min.js",
"test": "yarn run test:unit",
Expand Down
Loading

0 comments on commit c091c91

Please sign in to comment.