mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-16 08:52:35 +00:00
feat!: use semantic release (#704)
This commit is contained in:
parent
8463758e93
commit
94faa7df1e
9 changed files with 2317 additions and 389 deletions
61
package.json
61
package.json
|
|
@ -1,40 +1,40 @@
|
|||
{
|
||||
"name": "github-action",
|
||||
"version": "0.0.0-PLACEHOLDER",
|
||||
"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",
|
||||
"lint": "run-s lint-es",
|
||||
"lint:fix": "run-s lint-es:fix",
|
||||
"lint-es": "eslint .",
|
||||
"lint-es:file": "eslint",
|
||||
"lint-es:fix": "eslint --fix .",
|
||||
"lint-es:file:fix": "eslint --fix",
|
||||
"release:version": "ts-node src/get-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 --target es2021",
|
||||
"start": "run-s build && node dist",
|
||||
"prepare": "husky install"
|
||||
},
|
||||
"description": "GitHub Action to run Renovate self-hosted.",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "git+https://github.com/renovatebot/github-action.git"
|
||||
},
|
||||
"author": "Jeroen de Bruijn",
|
||||
"license": "GPL-3.0-or-later",
|
||||
"homepage": "https://github.com/renovatebot/github-action#readme",
|
||||
"bugs": {
|
||||
"url": "https://github.com/renovatebot/github-action/issues"
|
||||
},
|
||||
"homepage": "https://github.com/renovatebot/github-action#readme",
|
||||
"main": "src/index.ts",
|
||||
"engines": {
|
||||
"node": "^16.13.0 || >=18.12.0",
|
||||
"yarn": "^1.22.0"
|
||||
},
|
||||
"scripts": {
|
||||
"build": "run-s clean compile",
|
||||
"clean": "rimraf dist/",
|
||||
"compile": "ncc build -o dist --target es2021",
|
||||
"format": "prettier --ignore-unknown --write \"**/*.*\"",
|
||||
"format:file": "prettier --write",
|
||||
"lint": "run-s lint-es",
|
||||
"lint-es": "eslint .",
|
||||
"lint-es:file": "eslint",
|
||||
"lint-es:file:fix": "eslint --fix",
|
||||
"lint-es:fix": "eslint --fix .",
|
||||
"lint:fix": "run-s lint-es:fix",
|
||||
"prepare": "husky install",
|
||||
"release": "run-s clean build semantic-release",
|
||||
"semantic-release": "semantic-release",
|
||||
"start": "run-s build && node dist"
|
||||
},
|
||||
"dependencies": {
|
||||
"@actions/core": "1.10.0",
|
||||
"@actions/exec": "1.1.1"
|
||||
|
|
@ -42,10 +42,14 @@
|
|||
"devDependencies": {
|
||||
"@commitlint/cli": "17.4.4",
|
||||
"@commitlint/config-conventional": "17.4.4",
|
||||
"@semantic-release/git": "10.0.1",
|
||||
"@semantic-release/github": "8.0.7",
|
||||
"@semantic-release/npm": "9.0.2",
|
||||
"@types/node": "16.18.14",
|
||||
"@typescript-eslint/eslint-plugin": "5.54.0",
|
||||
"@typescript-eslint/parser": "5.54.0",
|
||||
"@vercel/ncc": "0.36.1",
|
||||
"conventional-changelog-conventionalcommits": "5.0.0",
|
||||
"eslint": "8.35.0",
|
||||
"eslint-config-prettier": "8.7.0",
|
||||
"eslint-plugin-json": "3.1.0",
|
||||
|
|
@ -53,8 +57,11 @@
|
|||
"lint-staged": "13.1.3",
|
||||
"npm-run-all": "4.1.5",
|
||||
"prettier": "2.8.4",
|
||||
"standard-version": "9.5.0",
|
||||
"prettier-plugin-package": "1.3.0",
|
||||
"rimraf": "4.2.0",
|
||||
"semantic-release": "19.0.5",
|
||||
"ts-node": "10.9.1",
|
||||
"typescript": "4.9.5"
|
||||
}
|
||||
},
|
||||
"packageManager": "yarn@1.22.19"
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue