Skip to content

Commit

Permalink
Improve Taskfile
Browse files Browse the repository at this point in the history
  • Loading branch information
andreynering committed Nov 18, 2022
1 parent 774886e commit 0827f89
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
coverage
bin
.task
5 changes: 5 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,13 @@ tasks:
desc: Build project using esbuild
cmds:
- npm run build
sources:
- ./src/**/*.js
- package.json
- package-lock.json

publish:
desc: Publish release to npm
deps: [build]
cmds:
- npm publish --access=public

0 comments on commit 0827f89

Please sign in to comment.