Skip to content

Commit 10a772d

Browse files
authored
Merge pull request #134 from RightCapitalHQ/renovate/major-auto-merge-dev-dependencies-updates
chore(deps): update devdependencies (major)
2 parents 84ec730 + 8991940 commit 10a772d

40 files changed

+1714
-556
lines changed

.husky/commit-msg

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1 @@
1-
#!/bin/sh
2-
. "$(dirname "$0")/_/husky.sh"
3-
41
pnpm commitlint --edit --config=commitlint.config.js
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"type": "none",
3+
"comment": "chore(deps): update devdependencies",
4+
"packageName": "@rightcapital/phpdoc-parser",
5+
"email": "29139614+renovate[bot]@users.noreply.github.com",
6+
"dependentChangeType": "none"
7+
}

package.json

Lines changed: 35 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@rightcapital/phpdoc-parser",
33
"version": "0.4.72",
4+
"description": "TypeScript version of PHPDoc parser with support for intersection types and generics",
45
"keywords": [
56
"PHP",
67
"PHPDoc",
@@ -11,61 +12,59 @@
1112
"AST",
1213
"Lexer"
1314
],
14-
"description": "TypeScript version of PHPDoc parser with support for intersection types and generics",
15-
"main": "dist/index.js",
1615
"repository": "https://github.com/RightCapitalHQ/phpdoc-parser",
17-
"author": "RightCapital Ecosystem team <npm-publisher@rightcapital.com>",
1816
"license": "MIT",
19-
"packageManager": "pnpm@9.12.1",
20-
"publishConfig": {
21-
"registry": "https://registry.npmjs.org"
22-
},
23-
"engines": {
24-
"node": ">=16.x",
25-
"pnpm": ">=8.x"
26-
},
17+
"author": "RightCapital Ecosystem team <npm-publisher@rightcapital.com>",
18+
"main": "dist/index.js",
2719
"files": [
2820
"dist"
2921
],
22+
"scripts": {
23+
"build": "pnpm run clean && tsc --project ./tsconfig.build.json",
24+
"change": "beachball change --no-commit",
25+
"check": "beachball check",
26+
"clean": "tsc --build --clean ./tsconfig.build.json",
27+
"commit": "cz",
28+
"eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'",
29+
"eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'",
30+
"preinstall": "npx only-allow pnpm",
31+
"test": "vitest"
32+
},
33+
"config": {
34+
"commitizen": {
35+
"path": "@commitlint/cz-commitlint"
36+
}
37+
},
38+
"dependencies": {
39+
"@types/node": "20.16.11",
40+
"lodash": "4.17.21",
41+
"typescript": "5.6.3"
42+
},
3043
"devDependencies": {
3144
"@babel/core": "7.25.8",
3245
"@babel/preset-env": "7.25.8",
3346
"@babel/preset-typescript": "7.25.7",
3447
"@commitlint/cli": "19.5.0",
3548
"@commitlint/config-conventional": "19.5.0",
3649
"@commitlint/cz-commitlint": "19.5.0",
37-
"@rightcapital/eslint-config-javascript": "20.1.2",
38-
"@rightcapital/eslint-config-typescript": "20.1.2",
39-
"@rightcapital/prettier-config": "6.0.16",
50+
"@rightcapital/eslint-config-javascript": "36.3.0",
51+
"@rightcapital/eslint-config-typescript": "36.3.0",
52+
"@rightcapital/prettier-config": "7.1.7",
4053
"@types/lodash": "4.17.10",
4154
"beachball": "2.47.1",
4255
"commitizen": "4.3.1",
4356
"eslint": "8.57.1",
4457
"husky": "9.1.6",
45-
"inquirer": "9.3.7",
58+
"inquirer": "12.0.0",
4659
"prettier": "3.3.3",
47-
"vitest": "1.6.0"
60+
"vitest": "2.1.2"
4861
},
49-
"dependencies": {
50-
"@types/node": "20.16.11",
51-
"lodash": "4.17.21",
52-
"typescript": "5.6.3"
53-
},
54-
"scripts": {
55-
"commit": "cz",
56-
"clean": "tsc --build --clean ./tsconfig.build.json",
57-
"change": "beachball change --no-commit",
58-
"check": "beachball check",
59-
"build": "pnpm run clean && tsc --project ./tsconfig.build.json",
60-
"preinstall": "npx only-allow pnpm",
61-
"prepare": "husky install",
62-
"eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'",
63-
"eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'",
64-
"test": "vitest"
62+
"packageManager": "pnpm@9.12.1",
63+
"engines": {
64+
"node": ">=16.x",
65+
"pnpm": ">=8.x"
6566
},
66-
"config": {
67-
"commitizen": {
68-
"path": "@commitlint/cz-commitlint"
69-
}
67+
"publishConfig": {
68+
"registry": "https://registry.npmjs.org"
7069
}
7170
}

0 commit comments

Comments
 (0)