-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(semantic-release): added the semantic-release release flow
- Loading branch information
1 parent
8113229
commit 5e37102
Showing
5 changed files
with
969 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"verifyConditions": ["semantic-release-chrome", "@semantic-release/github"], | ||
"prepare": [ | ||
{ | ||
"path": "semantic-release-chrome", | ||
"asset": "webplayer-hotkeys.zip" | ||
} | ||
], | ||
"publish": [ | ||
{ | ||
"path": "semantic-release-chrome", | ||
"asset": "webplayer-hotkeys.zip", | ||
"extensionId": "ikmkicnmahfdilneilgibeppbnolgkaf" | ||
}, | ||
{ | ||
"path": "@semantic-release/github", | ||
"assets": [ | ||
{ | ||
"path": "webplayer-hotkeys.zip" | ||
} | ||
] | ||
} | ||
], | ||
"analyzeCommits": { | ||
"releaseRules": [ | ||
{ | ||
"scope": "manifest", | ||
"release": "patch" | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,5 @@ node_js: | |
- node | ||
script: | ||
- yarn build:ci | ||
os: | ||
- linux | ||
- osx | ||
after_success: | ||
- yarn release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "webplayer-hotkeys", | ||
"version": "1.1.1", | ||
"version": "0.0.0-development", | ||
"main": "src\\background.ts", | ||
"repository": "https://github.com/GabrielDuarteM/Webplayer-Hotkeys.git", | ||
"author": "Gabriel Duarte <[email protected]> (https://github.com/GabrielDuarteM/)", | ||
|
@@ -13,7 +13,8 @@ | |
"lint": "yarn lint:tslint && yarn lint:prettier", | ||
"lint:tslint": "tslint 'src/**/*.ts' '*.ts' -p tsconfig.json", | ||
"lint:prettier": "prettier **/*.ts -l", | ||
"webpack": "webpack --progress" | ||
"webpack": "webpack --progress", | ||
"release": "semantic-release" | ||
}, | ||
"devDependencies": { | ||
"@types/chrome": "^0.0.64", | ||
|
@@ -25,6 +26,8 @@ | |
"copy-webpack-plugin": "^4.5.1", | ||
"fork-ts-checker-webpack-plugin": "^0.4.1", | ||
"prettier": "^1.12.1", | ||
"semantic-release": "^15.1.7", | ||
"semantic-release-chrome": "^1.0.0", | ||
"source-map-loader": "^0.2.3", | ||
"ts-loader": "^4.2.0", | ||
"ts-node": "^6.0.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.