Skip to content

Commit

Permalink
refactor: upgrade deps + add more entries to changelog + change lint …
Browse files Browse the repository at this point in the history
…and format commands

Signed-off-by: Vitor Hugo Salgado <vsalgadopb@gmail.com>
  • Loading branch information
vitorsalgado committed Jan 12, 2022
1 parent 02be710 commit 712928b
Show file tree
Hide file tree
Showing 6 changed files with 13,774 additions and 12,327 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@ jobs:
- name: Lint
run: |
npm run lint:ci
npm run lint
npm run format:check
- name: Test
run: |
Expand Down
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,9 @@ dist
!**/.yarn/sdks
!**/.yarn/versions
**/.pnp.*
.yarnrc.yml
yarn.lock
.yarn

# Project
.idea/
Expand Down
14 changes: 13 additions & 1 deletion .versionrc.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
'use strict'

module.exports = {}
module.exports = {
types: [
{ type: 'feat', section: 'Features' },
{ type: 'fix', section: 'Bug Fixes' },
{ type: 'chore', section: 'Chore', hidden: false },
{ type: 'docs', section: 'Docs', hidden: false },
{ type: 'style', section: 'Refactor', hidden: false },
{ type: 'refactor', section: 'Refactor', hidden: false },
{ type: 'perf', section: 'Perf', hidden: false },
{ type: 'test', section: 'Refactor', hidden: false },
{ type: 'build', section: 'Build', hidden: false }
]
}
2 changes: 1 addition & 1 deletion cmd/create-nodejs-ts/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ const Ignores = [
'yarn.lock'
]

const NoDeps = ['fs-extra']
const NoDeps = ['fs-extra', 'standard-release']

const Templates = [
{ file: 'ci.yml', copyTo: '.github/workflows/ci.yml' },
Expand Down
Loading

0 comments on commit 712928b

Please sign in to comment.