mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-17 02:29:37 +03:00
4c469cb460
* ci(semantic-release): add semantic release packages * ci(semantic-release): add semantic release packages * ci(semantic-release): update travis config * ci(semantic-release): fix package.json * ci: use node 10 * chore: update contributing guidelines * chore: add commit script * Update .travis.yml * ci: update travis config * ci: only deploy on master * ci: well that didn't seem to do anything
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
module.exports = {
|
|
release: {
|
|
branch: "master"
|
|
},
|
|
plugins: [
|
|
"@semantic-release/npm",
|
|
"@semantic-release/commit-analyzer",
|
|
"@semantic-release/release-notes-generator",
|
|
[
|
|
"@semantic-release/git",
|
|
{
|
|
assets: ["package.json"],
|
|
message: "chore(🚀): ${nextRelease.version}"
|
|
}
|
|
]
|
|
]
|
|
};
|