mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-23 12:07:08 +00:00
feat: migrate to node v16 (#611)
* ci: support manual release and fix commit message * feat: require node v16
This commit is contained in:
parent
61ab5a7228
commit
825caf3e3b
3 changed files with 14 additions and 6 deletions
|
|
@ -4,6 +4,10 @@
|
|||
"description": "GitHub Action to run Renovate self-hosted.",
|
||||
"private": true,
|
||||
"main": "src/index.ts",
|
||||
"engines": {
|
||||
"node": " >=16.0.0",
|
||||
"yarn": ">=1.22.0"
|
||||
},
|
||||
"scripts": {
|
||||
"format": "prettier --ignore-unknown --write \"**/*.*\"",
|
||||
"format:file": "prettier --write",
|
||||
|
|
@ -17,7 +21,7 @@
|
|||
"release:commit": "git add --force dist",
|
||||
"release:standard-version": "standard-version --release-as",
|
||||
"release": "run-s build release:commit \"release:standard-version -- {1}\" --",
|
||||
"build": "ncc build -o dist",
|
||||
"build": "ncc build -o dist --target es2021",
|
||||
"start": "run-s build && node dist",
|
||||
"prepare": "husky install"
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue