Skip to content

Commit

Permalink
feat(*): allow args for wasm and js publish commands
Browse files Browse the repository at this point in the history
  • Loading branch information
Nickersoft committed Jan 17, 2024
1 parent 36fa4bd commit c86d052
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions js/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@
npx tsc
RUNTIME_ENV=test npx jest {{args}}

@publish: build
npm publish
@publish +args="": build
npm publish {{args}}
4 changes: 2 additions & 2 deletions wasm/justfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
@clean:
rm -rf ../**/*.odict

@publish:
npm publish
@publish +args="":
npm publish {{args}}

@test: copy-exec install wasm && clean
npx tsc && npx jest --detectOpenHandles
Expand Down

0 comments on commit c86d052

Please sign in to comment.