Skip to content

Commit

Permalink
Add bitbucket variants (feat)
Browse files Browse the repository at this point in the history
  • Loading branch information
lukiffer committed May 2, 2024
1 parent b563276 commit 37aa47c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bitbucket/_filter.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
module.exports = function (config) {
config.plugins = config.plugins.filter(x => x[0] !== '@semantic-release/github');
return config;
}
1 change: 1 addition & 0 deletions bitbucket/assets.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./filter.js')(require('../assets.js'));
1 change: 1 addition & 0 deletions bitbucket/base.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./filter.js')(require('../base.js'));
1 change: 1 addition & 0 deletions bitbucket/npm.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = require('./filter.js')(require('../npm.js'));

0 comments on commit 37aa47c

Please sign in to comment.