mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-17 01:12:35 +00:00
chore(release): release on separate branch with changelog (#73)
* chore(release): release on separate branch with changelog * chore: update changelog * chore(ci): add required build step Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
This commit is contained in:
parent
a5501b90ee
commit
c6cec8c885
8 changed files with 122 additions and 325 deletions
16
package.json
16
package.json
|
|
@ -3,21 +3,22 @@
|
|||
"version": "0.0.0-PLACEHOLDER",
|
||||
"description": "GitHub Action to run Renovate self-hosted.",
|
||||
"private": true,
|
||||
"main": "dist/index.js",
|
||||
"main": "src/index.ts",
|
||||
"scripts": {
|
||||
"build:dist": "cd src && ncc build ./index.ts -o ../dist",
|
||||
"build": "cd src && ncc build ./index.ts -o ../dist",
|
||||
"format": "prettier --write \"**/*.{js,jsx,vue,ts,css,less,scss,html,htm,json,md,markdown,yml,yaml}\"",
|
||||
"format:file": "prettier --write",
|
||||
"git:dist": "git add -f dist",
|
||||
"lint": "concurrently npm:lint-es",
|
||||
"lint:fix": "concurrently npm:lint-es:fix",
|
||||
"lint-es": "eslint --ext .ts,.tsx,.js,.jsx,.json .",
|
||||
"lint-es:file": "eslint --ext .ts,.tsx,.js,.jsx,.json",
|
||||
"lint-es:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix .",
|
||||
"lint-es:file:fix": "eslint --ext .ts,.tsx,.js,.jsx,.json --fix",
|
||||
"start": "run-s build:dist && node dist",
|
||||
"version": "run-s build:* git:*"
|
||||
"release:version": "node_modules/.bin/ts-node src/get-release-version",
|
||||
"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",
|
||||
"start": "run-s build && node dist"
|
||||
},
|
||||
"repository": {
|
||||
"type": "git",
|
||||
|
|
@ -40,7 +41,6 @@
|
|||
"@typescript-eslint/eslint-plugin": "2.31.0",
|
||||
"@typescript-eslint/parser": "2.31.0",
|
||||
"@zeit/ncc": "0.22.1",
|
||||
"chalk-cli": "4.1.0",
|
||||
"concurrently": "5.2.0",
|
||||
"eslint": "6.8.0",
|
||||
"eslint-config-prettier": "6.11.0",
|
||||
|
|
@ -48,10 +48,10 @@
|
|||
"eslint-plugin-prettier": "3.1.3",
|
||||
"husky": "4.2.5",
|
||||
"lint-staged": "10.2.2",
|
||||
"next-standard-version": "2.1.3",
|
||||
"npm-run-all": "4.1.5",
|
||||
"prettier": "2.0.5",
|
||||
"standard-version": "7.1.0",
|
||||
"ts-node": "8.10.1",
|
||||
"typescript": "3.8.3"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue