Skip to content

Commit 712928b

Browse files
committed
refactor: upgrade deps + add more entries to changelog + change lint and format commands
Signed-off-by: Vitor Hugo Salgado <[email protected]>
1 parent 02be710 commit 712928b

File tree

6 files changed

+13774
-12327
lines changed

6 files changed

+13774
-12327
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ jobs:
4141
4242
- name: Lint
4343
run: |
44-
npm run lint:ci
44+
npm run lint
45+
npm run format:check
4546
4647
- name: Test
4748
run: |

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,9 @@ dist
110110
!**/.yarn/sdks
111111
!**/.yarn/versions
112112
**/.pnp.*
113+
.yarnrc.yml
114+
yarn.lock
115+
.yarn
113116

114117
# Project
115118
.idea/

.versionrc.js

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
'use strict'
22

3-
module.exports = {}
3+
module.exports = {
4+
types: [
5+
{ type: 'feat', section: 'Features' },
6+
{ type: 'fix', section: 'Bug Fixes' },
7+
{ type: 'chore', section: 'Chore', hidden: false },
8+
{ type: 'docs', section: 'Docs', hidden: false },
9+
{ type: 'style', section: 'Refactor', hidden: false },
10+
{ type: 'refactor', section: 'Refactor', hidden: false },
11+
{ type: 'perf', section: 'Perf', hidden: false },
12+
{ type: 'test', section: 'Refactor', hidden: false },
13+
{ type: 'build', section: 'Build', hidden: false }
14+
]
15+
}

cmd/create-nodejs-ts/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const Ignores = [
4141
'yarn.lock'
4242
]
4343

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

4646
const Templates = [
4747
{ file: 'ci.yml', copyTo: '.github/workflows/ci.yml' },

0 commit comments

Comments
 (0)