mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-12 10:10:32 -06:00
* Add vue2 package from npm/vue/v2 branch * Add vue2 as automatic export * remove npm/vue2/examples * remove cypress directory from vue2 * fix: ordering of build scripts * remove unneeded files from output, name module cypress-vue2 / CypressVue2 * fix types package resolution Co-authored-by: Lachlan Miller <lachlan.miller.1990@outlook.com> Co-authored-by: Tim Griesser <tgriesser10@gmail.com>
21 lines
473 B
JavaScript
21 lines
473 B
JavaScript
module.exports = {
|
|
plugins: [
|
|
'@semantic-release/commit-analyzer',
|
|
'@semantic-release/release-notes-generator',
|
|
['@semantic-release/changelog', {
|
|
changelogFile: 'CHANGELOG.md',
|
|
}],
|
|
['@semantic-release/git', {
|
|
assets: [
|
|
'./CHANGELOG.md',
|
|
],
|
|
message: 'chore: release ${nextRelease.gitTag}\n\n[skip ci]',
|
|
}],
|
|
'@semantic-release/npm',
|
|
],
|
|
extends: 'semantic-release-monorepo',
|
|
branches: [
|
|
'master',
|
|
],
|
|
}
|