packages go in the release dir

This commit is contained in:
Yanick Champoux 2024-08-08 09:40:28 -04:00
parent 33a10d6916
commit 55376db1c2
2 changed files with 8 additions and 1 deletions

1
.gitignore vendored
View File

@ -13,3 +13,4 @@ pnpm-lock.yaml
updux-5.0.0.tgz updux-5.0.0.tgz
.envrc .envrc
.task .task
releases

View File

@ -8,13 +8,19 @@ vars:
tasks: tasks:
pack: pack:
cmds: cmds:
- npm pack - npm pack --pack-destination releases
build: tsc build: tsc
checks: checks:
deps: [test, build] deps: [test, build]
prepare:
desc: build and bundle the package
cmds:
- { task: build }
- { task: pack }
integrate: integrate:
deps: [checks] deps: [checks]
cmds: cmds: