Skip to content

Commit

Permalink
Build for 1fe67a5 style: lint fixes for semantic-release config
Browse files Browse the repository at this point in the history
  • Loading branch information
cwillisf committed Dec 21, 2023
1 parent 1fd51c8 commit 558efef
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
Binary file modified closure-library/closure/bin/__pycache__/calcdeps.cpython-310.pyc
Binary file not shown.
5 changes: 5 additions & 0 deletions playgrounds/commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
/* global module */
module.exports = {
extends: ['@commitlint/config-conventional'],
ignores: [message => message.startsWith('chore(release):')]
};
20 changes: 20 additions & 0 deletions playgrounds/release.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
/* global module */
module.exports = {
extends: 'scratch-semantic-release-config',
branches: [
{
name: 'develop'
// default channel
},
{
name: 'beta/*',
channel: 'beta',
prerelease: 'beta'
},
{
name: 'hotfix/*',
channel: 'hotfix',
prerelease: 'hotfix'
}
]
};

0 comments on commit 558efef

Please sign in to comment.