Skip to content

Commit

Permalink
fix(core): all deps update
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
LB4 major upgrade

gh-0
  • Loading branch information
Samarpan Bhattacharya authored and Samarpan Bhattacharya committed Nov 15, 2021
1 parent 37fc0cf commit 990267d
Show file tree
Hide file tree
Showing 6 changed files with 13,947 additions and 826 deletions.
12 changes: 4 additions & 8 deletions .cz-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,11 @@ module.exports = {
{value: 'docs', name: 'docs: Documentation only changes'},
{
value: 'style',
name:
'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)',
name: 'style: Changes that do not affect the meaning of the code\n (white-space, formatting, missing semi-colons, etc)',
},
{
value: 'refactor',
name:
'refactor: A code change that neither fixes a bug nor adds a feature',
name: 'refactor: A code change that neither fixes a bug nor adds a feature',
},
{
value: 'perf',
Expand All @@ -20,8 +18,7 @@ module.exports = {
{value: 'test', name: 'test: Adding missing tests'},
{
value: 'chore',
name:
'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation',
name: 'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation',
},
{value: 'revert', name: 'revert: Reverting a commit'},
{value: 'WIP', name: 'WIP: Work in progress'},
Expand All @@ -47,8 +44,7 @@ module.exports = {
// used if allowCustomScopes is true
customScope: 'Denote the SCOPE of this change:',
subject: 'Write a SHORT, IMPERATIVE tense description of the change:\n',
body:
'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
body: 'Provide a LONGER description of the change (optional). Use "|" to break new line:\n',
breaking: 'List any BREAKING CHANGES (optional):\n',
footer: 'List any ISSUES CLOSED by this change (optional). E.g.: gh-144:\n',
confirmCommit: 'Are you sure you want to proceed with the commit above?',
Expand Down
4 changes: 4 additions & 0 deletions .husky/commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npx --no-install commitlint --edit
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

npm test
4 changes: 4 additions & 0 deletions .husky/prepare-commit-msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/bin/sh
. "$(dirname "$0")/_/husky.sh"

exec < /dev/tty && npx cz --hook || true
Loading

0 comments on commit 990267d

Please sign in to comment.