-
Notifications
You must be signed in to change notification settings - Fork 192
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update ESLint rules - Add steps to update yarn lock files after release - Fix Linter issues - Fix Mixpanel mock issues - Enable publish on Master branch
- Loading branch information
Showing
14 changed files
with
4,031 additions
and
4,651 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
nodeLinker: node-modules | ||
nodeLinker: node-modules | ||
npmPublishAccess: public |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,13 @@ | ||
module.exports = { | ||
plugins: [ | ||
['@semantic-release/commit-analyzer', { preset: 'conventionalcommits' }], | ||
[ | ||
'@semantic-release/release-notes-generator', | ||
{ preset: 'conventionalcommits' }, | ||
'@semantic-release/commit-analyzer', | ||
{ preset: 'conventionalcommits' } | ||
], | ||
'@semantic-release/changelog', | ||
[ | ||
'semantic-release-yarn', | ||
{ | ||
npmPublish: false, | ||
tarballDir: "dist" | ||
} | ||
], | ||
'semantic-release-yarn', | ||
'@semantic-release/github', | ||
'@semantic-release/git', | ||
'@semantic-release/git' | ||
], | ||
debug: true | ||
}; |
Oops, something went wrong.