mirror of
https://github.com/googleapis/release-please-action.git
synced 2026-03-25 13:43:09 +00:00
🤖 I have created a release *beep* *boop* --- ## [4.0.0](https://github.com/google-github-actions/release-please-action/compare/v3.7.13...v4.0.0) (2023-12-01) ### ⚠ BREAKING CHANGES * remove most configuration options in favor of manifest configuration to configure the release-please-action * rewrite in typescript * remove command option in favor of setting `release-type` and `skip-github-release`/`skip-github-pull-request` * run on node20 * **deps:** upgrade release-please to v16 * v4 release ### Features * **deps:** upgrade release-please to v16 ([9cf05a0](9cf05a09b1)) * remove command option in favor of setting `release-type` and `skip-github-release`/`skip-github-pull-request` ([9cf05a0](9cf05a09b1)) * remove most configuration options in favor of manifest configuration to configure the release-please-action ([9cf05a0](9cf05a09b1)) * run on node20 ([9cf05a0](9cf05a09b1)) * v4 release ([9cf05a0](9cf05a09b1)) ### Bug Fixes * bump release-please from 16.3.0 to 16.3.1 ([#876](https://github.com/google-github-actions/release-please-action/issues/876)) ([c9291a9](c9291a968c)) * restore include-component-in-tag default (false) ([#888](https://github.com/google-github-actions/release-please-action/issues/888)) ([19431a1](19431a1126)) ### Code Refactoring * rewrite in typescript ([9cf05a0](9cf05a09b1)) --- This PR was generated with [Release Please](https://github.com/googleapis/release-please). See [documentation](https://github.com/googleapis/release-please#release-please). Co-authored-by: Jeff Ching <chingor@google.com>
55 lines
1.3 KiB
JSON
55 lines
1.3 KiB
JSON
{
|
|
"name": "release-please-action",
|
|
"private": true,
|
|
"version": "4.0.0",
|
|
"description": "automated releases based on conventional commits",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "c8 mocha --node-option no-experimental-fetch --recursive --timeout=5000 build/test",
|
|
"prepare": "npm run compile",
|
|
"lint": "gts check",
|
|
"compile": "tsc -p .",
|
|
"fix": "gts fix",
|
|
"build": "ncc build src/index.ts",
|
|
"pretest": "npm run compile"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bcoe/release-please-action.git"
|
|
},
|
|
"keywords": [
|
|
"release-please",
|
|
"action"
|
|
],
|
|
"author": "Ben Coe <bencoe@gmail.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/bcoe/release-please-action/issues"
|
|
},
|
|
"homepage": "https://github.com/bcoe/release-please-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"release-please": "^16.3.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^20.8.10",
|
|
"@types/sinon": "^10.0.0",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"c8": "^7.5.0",
|
|
"gts": "^5.2.0",
|
|
"mocha": "^9.1.4",
|
|
"mocked-env": "^1.3.5",
|
|
"nock": "^13.2.1",
|
|
"sinon": "^9.2.4",
|
|
"standard": "^16.0.4",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"standard": {
|
|
"ignore": "dist/"
|
|
},
|
|
"engines": {
|
|
"node": ">=20.0.0"
|
|
}
|
|
}
|