Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Project management #127

Draft
wants to merge 2 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
language: node_js
node_js:
- "node"
- "6"
- 'node'
- '6'
install:
- npm install
- npm install && npm audit fix
script:
- npm run test
- npm run benchmark
- npm run format
- npm run test
- npm run benchmark
after_success:
- npm run semantic-release
38 changes: 38 additions & 0 deletions cz-config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
module.exports = {
types: [
{value: 'feat', name: 'feat: A new feature'},
{value: 'fix', name: 'fix: A bug fix'},
{value: 'docs', name: 'docs: Documentation only changes'},
{
value: 'style',
name: 'style: Changes that do not affect the meaning of the code',
},
{
value: 'refactor',
name:
'refactor: A code change that neither fixes a bug nor adds a feature',
},
{
value: 'perf',
name: 'perf: A code change that improves performance',
},
{value: 'test', name: 'test: Adding tests'},
{
value: 'build',
name:
'build: Changes that affect the build system or external dependencies',
},
{
value: 'ci',
name: 'ci: Changes to our CI configuration files and scripts',
},
{
value: 'chore',
name:
'chore: Changes to the build process or auxiliary tools\n and libraries such as documentation generation',
},
{value: 'revert', name: 'revert: Revert to a commit'},
],
scopes: ['project', 'lexer', 'build', 'tests'],
allowCustomScopes: false,
}
Loading