mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-07 17:36:00 +00:00
This prepares a PR with updated history and version for auto-merge. Any new PRs are merged into HISTORY.md but existing entries are left untouched. Thus, we can tweak wording in HISTORY.md at any time without the effort of figuring out which PRs need to be present manually.
39 lines
1 KiB
JSON
39 lines
1 KiB
JSON
{
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.2",
|
|
"@actions/github": "^2.1.0",
|
|
"typescript": "^3.7.5",
|
|
"yargs": "^15.1.0"
|
|
},
|
|
"description": "Automatically updates HISTORY.md based on pull requests",
|
|
"devDependencies": {
|
|
"@types/node": "^13.7.0",
|
|
"@types/semver": "^7.1.0",
|
|
"@zeit/ncc": "^0.21.0",
|
|
"semver": "^7.1.2",
|
|
"ts-node": "^8.6.2"
|
|
},
|
|
"engines": {
|
|
"node": "12"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src"
|
|
],
|
|
"license": "MIT",
|
|
"main": "dist/index.js",
|
|
"name": "@keymanapp/auto-history-action",
|
|
"private": false,
|
|
"repository": "https://github.com/keymanapp/auto-history-action",
|
|
"scripts": {
|
|
"build": "npm run clean:dist; npm run build:dist",
|
|
"build:dist": "ncc build src/index.ts --minify --source-map --v8-cache",
|
|
"build:ts": "tsc --project tsconfig.production.json",
|
|
"build:ts:watch": "tsc --project tsconfig.production.json --watch",
|
|
"clean": "run-p clean:*",
|
|
"clean:dist": "rm -rf dist",
|
|
"clean:lib": "rm -rf lib",
|
|
"types": "tsc --noEmit"
|
|
},
|
|
"version": "1.1.3"
|
|
}
|