Skip to content

Upgrade dependencies #10

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

Merged
merged 45 commits into from
May 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
0d48620
build(deps): bump all dependencies to latest version
xeptore Mar 31, 2021
f19113f
build(deps): re-generate package-lock.json with npm@7
xeptore Mar 31, 2021
ff051f3
chore(lint): migrate eslint prettier plugin configuration
xeptore Mar 31, 2021
f040981
style(lint): lint files
xeptore Mar 31, 2021
34c4096
style(lint): fix eslint linting warning
xeptore Mar 31, 2021
6e9d4b2
build(deps): add @commitlint/types package
xeptore Mar 31, 2021
aeb2361
refactor(engine): adapt with dependencies upgrade
xeptore Mar 31, 2021
e6f7a3a
refactor(engine): improve typing
xeptore Mar 31, 2021
64700ed
refactor(utils): adapt utils with dependencies upgrade
xeptore Mar 31, 2021
a71f7c9
refactor(body-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
449e053
refactor(footer-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
2e2fd7f
refactor(scope-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
9b902cb
refactor(subject-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
141555a
refactor(type-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
f1ba279
refactor(commit-template): adapt with dependencies upgrade
xeptore Mar 31, 2021
f80eb0f
style(ts): use import type syntax
xeptore Mar 31, 2021
1ce5c17
refactor(filters): adapt with dependencies upgrade
xeptore Mar 31, 2021
70b8f5e
style(ts): use import type syntax
xeptore Mar 31, 2021
b680b15
refactor(validators): adapt with dependencies upgrade
xeptore Mar 31, 2021
82fe9c8
refactor(when): adapt with dependencies upgrade
xeptore Mar 31, 2021
471df38
refactor(test/body-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
57b5baf
refactor(test/scope-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
fa578f4
refactor(test/subject-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
d592206
refactor(test/type-maker): adapt with dependencies upgrade
xeptore Mar 31, 2021
aeadd04
refactor(test/commit-template): adapt with dependencies upgrade
xeptore Mar 31, 2021
4a7a19b
refactor(test/filters): adapt with dependencies upgrade
xeptore Mar 31, 2021
15514e0
refactor(test/utils): adapt with dependencies upgrade
xeptore Mar 31, 2021
764bd86
refactor(test/validators): adapt with dependencies upgrade
xeptore Mar 31, 2021
3774052
refactor(test/when): adapt with dependencies upgrade
xeptore Mar 31, 2021
a77e01b
build(npm): add prepare script
xeptore Mar 31, 2021
e709421
chore(git): add husky pre-commit hook script files
xeptore Mar 31, 2021
b9b0af0
chore: migrate husky to its latest version
xeptore Mar 31, 2021
e0f02ff
build: remove git-add from lint-staged scripts
xeptore Mar 31, 2021
d3c9aa4
style: exclude parentheses around sole arrow function parameters
xeptore Apr 1, 2021
72797a8
style: lint all files
xeptore Apr 1, 2021
26a9e8b
fix: relax nullable rule checks
xeptore Apr 1, 2021
cd0e0fe
Merge pull request #1 from xeptore/upgrade-deps
xeptore Apr 1, 2021
f2406d7
build(deps): update typescript
xeptore Apr 9, 2021
afb06f2
build(deps): update tslib
xeptore Apr 9, 2021
b94270c
build(deps): update @typescript-eslint
xeptore Apr 9, 2021
55ecac4
build(deps): update @commitlint
xeptore Apr 9, 2021
da38441
build: update outdated dependencies
xeptore May 27, 2021
21a33cd
style: lint type maker test file
xeptore May 27, 2021
2db17a8
build: bump commitizen dependency
xeptore May 27, 2021
b9ce146
Merge branch 'master' into master
xeptore May 27, 2021
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
18 changes: 14 additions & 4 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,17 @@
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint", "prettier", "import", "unicorn"],
"plugins": [
"@typescript-eslint",
"prettier",
"import",
"unicorn"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
Expand All @@ -31,13 +36,18 @@
},
"overrides": [
{
"files": ["*.test.ts"],
"files": [
"*.test.ts"
],
"rules": {
"@typescript-eslint/no-non-null-assertion": "off"
}
}
],
"settings": {
"import/extensions": [".ts", ".js"]
"import/extensions": [
".ts",
".js"
]
}
}
1 change: 1 addition & 0 deletions .husky/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
_
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 $1
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"

npx --no-install lint-staged
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 && git cz --hook || true
3 changes: 2 additions & 1 deletion .prettierrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"singleQuote": true,
"tabWidth": 2,
"useTabs": false,
"printWidth": 120
"printWidth": 120,
"arrowParens": "avoid"
}
4 changes: 2 additions & 2 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module.exports = {
extends: ['@commitlint/config-conventional'],
rules: {
'scope-enum': [2, 'always', ['deps']]
}
'scope-enum': [2, 'always', ['deps']],
},
};
2 changes: 1 addition & 1 deletion jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
collectCoverage: true,
collectCoverageFrom: ['src/**/*.ts']
collectCoverageFrom: ['src/**/*.ts'],
};
Loading