From 18d0d9f4da9337c261e9c8e17d31b953bf36c1d5 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Tue, 15 Aug 2023 13:49:06 +0000 Subject: [PATCH] Chore(release): 3.1.0 [skip ci] # [3.1.0](https://github.com/cgkineo/adapt-hint/compare/v3.0.0...v3.1.0) (2023-08-15) ### Fix * Create new schema JSON files ([480f8a7](https://github.com/cgkineo/adapt-hint/commit/480f8a797b3928e5eb0a9c1b7a7a4950ca6dd43d)) * update a11y helpers (fixes #9) (#10) ([508917a](https://github.com/cgkineo/adapt-hint/commit/508917a926679ad7773803d9206ef13455b00dff)), closes [#9](https://github.com/cgkineo/adapt-hint/issues/9) [#10](https://github.com/cgkineo/adapt-hint/issues/10) ### New * Automated release added to the Repo (#17) ([89ca616](https://github.com/cgkineo/adapt-hint/commit/89ca61696a709e5d112a2fcb16d0235146aaa174)), closes [#17](https://github.com/cgkineo/adapt-hint/issues/17) * Automated release added to the Repo. ([ac17150](https://github.com/cgkineo/adapt-hint/commit/ac171504dcb1c4df51b7cc3fa9703e7cf4a02fba)) * button text +/ icon support, items removed and a11y enhancements (fixes #13) (#15) ([0baa496](https://github.com/cgkineo/adapt-hint/commit/0baa496d4e978f11f1af8f67b5e403f0e6b106d5)), closes [#13](https://github.com/cgkineo/adapt-hint/issues/13) [#15](https://github.com/cgkineo/adapt-hint/issues/15) --- bower.json | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 6ae9136..2c79787 100644 --- a/bower.json +++ b/bower.json @@ -13,5 +13,46 @@ "adapt-extension" ], "license": "GPL-3.0", - "targetAttribute": "_hint" + "targetAttribute": "_hint", + "private": true, + "devDependencies": { + "@semantic-release/commit-analyzer": "^9.0.2", + "@semantic-release/git": "^10.0.1", + "@semantic-release/github": "^8.0.5", + "@semantic-release/npm": "^9.0.1", + "@semantic-release/release-notes-generator": "^10.0.3", + "conventional-changelog-eslint": "^3.0.9", + "semantic-release": "^21.0.1" + }, + "scripts": { + "postversion": "cp package.json bower.json" + }, + "release": { + "plugins": [ + [ + "@semantic-release/commit-analyzer", + { + "preset": "eslint" + } + ], + [ + "@semantic-release/release-notes-generator", + { + "preset": "eslint" + } + ], + "@semantic-release/npm", + "@semantic-release/github", + [ + "@semantic-release/git", + { + "assets": [ + "package.json", + "bower.json" + ], + "message": "Chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" + } + ] + ] + } }