Skip to content

Commit

Permalink
feat: allow saving of incomplete forms
Browse files Browse the repository at this point in the history
  • Loading branch information
neferin12 committed Nov 5, 2024
1 parent 441fb6e commit f4d0a92
Show file tree
Hide file tree
Showing 5 changed files with 4,684 additions and 4,495 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:

strategy:
matrix:
node-version: [14.x, 16.x]
node-version: [18.x, 20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/

steps:
Expand Down
20 changes: 18 additions & 2 deletions .release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,27 @@
"publish": false
},
"hooks": {
"before:init": ["npm run lint"],
"before:init": [
"npm run lint"
],
"after:bump": [
"npm run build",
"npm run zip"
],
"after:release": ["npm run clean", "echo Successfully released ${name} v${version} to ${repo.repository}."]
"after:release": [
"npm run clean",
"echo Successfully released ${name} v${version} to ${repo.repository}."
]
},
"plugins": {
"@csmith/release-it-calver-plugin": {
"format": "yyyy.mm.minor"
},
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
},
"infile": "CHANGELOG.md"
}
}
}
Loading

0 comments on commit f4d0a92

Please sign in to comment.