Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
nodejs 18.20.8
nodejs 20.19.4
2 changes: 1 addition & 1 deletion docs/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To be able to publish the correct version to NPM, we are currently following [An

### CommitLint to the rescue

Before creating a commit we will run a husky hook which will check if the commit structure is valid or not. If you don't want to create the commit manually, you can use `yarn commit` which will use [`commitzen`](https://github.com/commitizen/cz-cli) to help you out creating the message.
Before creating a commit we will run a husky hook which will check if the commit structure is valid or not.

## Client CI

Expand Down
13 changes: 3 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,10 @@
"example": "ts-node ./examples/example.ts",
"get-version": "echo $npm_package_version",
"release": "npx semantic-release",
"commit": "git-cz",
"commitlint": "commitlint",
"prettier": "prettier --write --loglevel=warn .",
"prettier-check": "prettier --check ."
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint",
Expand Down Expand Up @@ -69,16 +63,14 @@
"@babel/preset-typescript": "7.28.5",
"@commitlint/cli": "17.8.1",
"@commitlint/config-angular": "17.8.1",
"@commitlint/cz-commitlint": "17.8.1",
"@rollup/plugin-commonjs": "25.0.8",
"@rollup/plugin-node-resolve": "15.3.1",
"@rollup/plugin-terser": "0.4.4",
"@rollup/plugin-terser": "1.0.0",
"@rollup/plugin-typescript": "12.3.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "6.7.5",
"@typescript-eslint/parser": "6.7.5",
"colors": "1.4.0",
"commitizen": "4.3.1",
"dotenv": "16.6.1",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.2",
Expand All @@ -95,10 +87,11 @@
"semantic-release": "22.0.12",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
},
"engines": {
"node": ">=18.*"
"node": ">=20"
},
"release": {
"plugins": [
Expand Down
Loading
Loading