Skip to content

Commit

Permalink
style: word cloud
Browse files Browse the repository at this point in the history
  • Loading branch information
yld-weng committed Apr 14, 2022
1 parent 827b4a0 commit 099ded4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 2 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ Although the scope is optional but it is recommended to include the scope so tha
- `fix(no-release): responsive issue for xxx`
- the `no-release` scope will not trigger a release

For breaking changes, add `!` after `<type>(Scope)` or add `BREAKING CHANGE: description.`/`BREAKING CHANGES: description.`

## <a name="website"></a> Contribute to the core website

This website is built from <a href="https://www.gatsbyjs.org/">Gatsby</a> framework.
Expand Down
2 changes: 1 addition & 1 deletion release.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module.exports = {
preset: "conventionalcommits",
releaseRules: "./semantic-release-rules.js",
parserOpts: {
noteKeywords: ["BREAKING CHANGE", "BREAKING CHANGES"]
noteKeywords: ["BREAKING CHANGE", "BREAKING-CHANGE", "BREAKING CHANGES"]
}
}
],
Expand Down
5 changes: 3 additions & 2 deletions semantic-release-rules.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = [
{ breaking: true, release: "major" },
{ tag: 'Breaking', release: 'major' },
{ revert: true, release: "patch" },
{ type: "feat", release: "minor" },
{ type: "fix", release: "patch" },
{ type: "perf", release: "patch" },
Expand All @@ -10,8 +13,6 @@ module.exports = [
{ type: "test", release: "patch" },
{ type: "build", release: "patch" },
{ type: "ci", release: "patch" },
{ breaking: true, release: "major" },
{ revert: true, release: "patch" },
{ type: "chore", release: false },
{ scope: "no-release", release: false }
];
1 change: 1 addition & 0 deletions src/components/visualisation/visUtils.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ const VisUtils = React.memo(({ tagMenu, handleTagMenu, tags }) => {
menu="Tag menu"
minFontSize={0.97}
maxFontSize={2.8}
padding="1px 3px"
colour={[
"#808080",
"#ff5e5e",
Expand Down

0 comments on commit 099ded4

Please sign in to comment.