-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bundle to include template (#160)
- Loading branch information
1 parent
325f6c1
commit 1e0b936
Showing
3 changed files
with
7 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@acala-network/chopsticks", | ||
"version": "0.3.3", | ||
"version": "0.3.4", | ||
"main": "./dist/index.js", | ||
"types": "./dist/index.d.ts", | ||
"author": "Bryan Chen <[email protected]>", | ||
|
@@ -16,7 +16,8 @@ | |
"fix": "eslint . --ext .js,.ts --fix && prettier -w .", | ||
"prepare": "husky install", | ||
"start": "ts-node --transpile-only src/index.ts", | ||
"build": "rm -rf dist && tsc -p tsconfig.prod.json", | ||
"build": "rm -rf dist && tsc -p tsconfig.prod.json && yarn postbuild", | ||
"postbuild": "cp -r template ./dist", | ||
"build-wasm": "wasm-pack build executor --target nodejs --scope acala-network", | ||
"build-wasm-logging": "yarn build-wasm --features=logging", | ||
"check": "cd executor && cargo check --locked", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters