Merge branch 'releasePreps'

This commit is contained in:
Yanick Champoux 2023-01-11 13:17:56 -05:00
commit cf78da1d70
3 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
*remeda*.tgz
node_modules
coverage
pnpm-lock.yaml

View File

@ -12,11 +12,25 @@ tasks:
cmds:
- changelord print > CHANGELOG.md
test: vitest run
build:
sources: ["src/**"]
generates: ["esm/**"]
deps: [test]
cmds:
- rm -fr esm/
- tsc -p tsconfig.json
prepRelease:
deps: [changelog, build]
preconditions:
- sh: git branch | grep '* main'
msg: not on main
- sh: git is-clean
msg: stuff not commited
cmds:
- npm pack
default:
cmds:
- echo "{{.GREETING}}"

View File

@ -1,6 +1,6 @@
{
"type": "module",
"name": "updeep-remeda",
"name": "@yanick/updeep-remeda",
"version": "2.0.0",
"description": "Easily update nested frozen objects and arrays in a declarative and immutable manner.",
"homepage": "https://git.babyl.ca/yanick/updeep-remeda",