Skip to content

Commit 4a91c12

Browse files
committed
workflow: fix build command
1 parent 3815c69 commit 4a91c12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-bip39",
3-
"version": "0.0.1",
3+
"version": "0.0.2",
44
"description": "7kb JavaScript implementation of Bitcoin BIP39",
55
"main": "index.js",
66
"module": "dist/web-bip39.esm.js",

scripts/release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ async function main() {
9393
// build package
9494
step('\nBuilding package...');
9595
if (!skipBuild && !isDryRun) {
96-
await run('npm', ['build', '--release']);
96+
await run('npm', ['run', 'build']);
9797
} else {
9898
console.log(`(skipped)`);
9999
}

0 commit comments

Comments
 (0)