Skip to content

Commit

Permalink
chore(deps): upgrade outdated deps, fixed version & add commitlint
Browse files Browse the repository at this point in the history
  • Loading branch information
phatpham9 committed Jun 7, 2021
1 parent ff3c9bb commit 9e4cd02
Show file tree
Hide file tree
Showing 5 changed files with 891 additions and 1,997 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
lint-source:
strategy:
matrix:
node-version: [10, 12, 14, 15]
node-version: [12, 14, 15]
runs-on: ubuntu-latest
container: boringcodes/dev-runner:node-${{matrix.node-version}}-alpine
name: With Node.js ${{matrix.node-version}}
Expand Down
5 changes: 0 additions & 5 deletions .huskyrc

This file was deleted.

4 changes: 0 additions & 4 deletions .lintstagedrc

This file was deleted.

53 changes: 35 additions & 18 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@
"files": [
"generators"
],
"engines": {
"node": ">=12.10.0"
},
"scripts": {
"purge": "rimraf node_modules",
"format": "prettier --write --ignore-path .gitignore .",
Expand All @@ -19,31 +22,45 @@
"release": "standard-version",
"release:major": "yarn release --release-as major",
"release:minor": "yarn release --release-as minor",
"release:patch": "yarn release --release-as patch"
"release:patch": "yarn release --release-as patch",
"husky": "husky",
"lint-staged": "lint-staged",
"commitlint": "commitlint"
},
"keywords": [
"yeoman-generator",
"create-service"
],
"dependencies": {
"chalk": "^4.1.0",
"change-case": "^4.1.2",
"yeoman-generator": "^4.12.0",
"yosay": "^2.0.2"
"chalk": "4.1.1",
"change-case": "4.1.2",
"yeoman-generator": "5.3.0",
"yosay": "2.0.2"
},
"devDependencies": {
"@boringcodes/eslint-config": "^1.2.1",
"@boringcodes/prettier-config": "^1.3.1",
"eslint": "^7.17.0",
"eslint-config-prettier": "^7.1.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"husky": "^4.3.7",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"standard-version": "^9.1.0"
"@boringcodes/eslint-config": "1.2.6",
"@boringcodes/prettier-config": "1.3.2",
"@commitlint/cli": "12.1.4",
"@commitlint/config-conventional": "12.1.4",
"eslint": "7.28.0",
"eslint-config-prettier": "8.3.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"husky": "6.0.0",
"lint-staged": "11.0.0",
"prettier": "2.3.1",
"rimraf": "3.0.2",
"standard-version": "9.3.0"
},
"lint-staged": {
"*.{ts,js,json,md,yml}": "yarn format",
"!(**/templates/*).js": "yarn lint"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}

0 comments on commit 9e4cd02

Please sign in to comment.