We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 221c4cf commit fd2eb59Copy full SHA for fd2eb59
bin/build.js
@@ -63,6 +63,9 @@ export async function build(args) {
63
if (config.coverage.show)
64
command += " --use COVERAGE_SHOW=1";
65
}
66
+ if (config.buildOptions.args) {
67
+ command += args.join(" ");
68
+ }
69
buildCommands.push(command);
70
71
const build = (command) => {
package.json
@@ -12,7 +12,9 @@
12
"pretest": "node ./bin/index.js build",
13
"build:transform": "tsc -p ./transform",
14
"build:cli": "tsc -p cli",
15
- "prettier": "prettier -w ."
+ "prettier": "prettier -w .",
16
+
17
+ "prepublish": "npm run build:cli && npm run build:transform && npm run test"
18
},
19
"devDependencies": {
20
"@assemblyscript/wasi-shim": "^0.1.0",
0 commit comments