Skip to content
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

chore(deps): update devdependencies (major) #71

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
3 changes: 2 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# We don't lint the generated files
src/php-parser/types/node
src/php-parser/types/types.ts
src/php-parser/types/types.ts
dist
7 changes: 2 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,8 @@ jobs:
- name: Install deps
run: pnpm install

- name: ESLint
run: pnpm run eslint

- name: Prettier code style check
run: pnpm prettier . --check
- name: Lint
run: pnpm run lint

check-beachball-changefile:
if: github.base_ref == github.event.repository.default_branch
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"type": "none",
"comment": "chore(deps): update devdependencies",
"packageName": "@rightcapital/php-parser",
"email": "29139614+renovate[bot]@users.noreply.github.com",
"dependentChangeType": "none"
}
69 changes: 37 additions & 32 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,38 +2,39 @@
"name": "@rightcapital/php-parser",
"version": "1.1.3",
"description": "TypeScript types for PHP Parser JSON representation",
"keywords": [
"PHP",
"PHP Parser",
"AST",
"TypeScript",
"Lexer"
],
"repository": "https://github.com/RightCapitalHQ/php-parser",
"license": "MIT",
"author": "RightCapital Ecosystem team <npm-publisher@rightcapital.com>",
"main": "dist/index.js",
"scripts": {
"commit": "cz",
"clean": "tsc --build --clean ./tsconfig.build.json",
"build": "pnpm run clean && tsc --project ./tsconfig.build.json",
"change": "beachball change --no-commit",
"check": "beachball check",
"build": "pnpm run clean && tsc --project ./tsconfig.build.json",
"eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'",
"eslint:fix": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'",
"clean": "tsc --build --clean ./tsconfig.build.json",
"commit": "cz",
"fix": "pnpm run fix:eslint && pnpm run fix:prettier",
"fix:eslint": "eslint --report-unused-disable-directives --fix 'src/**/*.ts*'",
"fix:prettier": "prettier --write .",
"generate:types": "tsx src/php-parser/generate-types.ts",
"preinstall": "npx only-allow pnpm",
"postinstall": "command -v composer >/dev/null 2>&1 && composer install || echo 'Composer not found, skipping.'",
"lint": "concurrently 'pnpm:lint:*'",
"lint:eslint": "eslint --report-unused-disable-directives 'src/**/*.ts*'",
"lint:prettier": "prettier --check .",
"prepare": "husky"
},
"repository": "https://github.com/RightCapitalHQ/php-parser",
"packageManager": "pnpm@9.0.4",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"engines": {
"node": ">=16.x",
"pnpm": ">=8.x"
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"keywords": [
"PHP",
"PHP Parser",
"AST",
"TypeScript",
"Lexer"
],
"author": "RightCapital Ecosystem team <npm-publisher@rightcapital.com>",
"license": "MIT",
"dependencies": {
"@rightcapital/phpdoc-parser": "0.4.21",
"lodash": "4.17.21",
Expand All @@ -42,22 +43,26 @@
"typescript": "5.4.2"
},
"devDependencies": {
"@commitlint/cli": "18.6.1",
"@commitlint/config-conventional": "18.6.3",
"@commitlint/cz-commitlint": "18.6.1",
"@rightcapital/eslint-config-javascript": "19.0.2",
"@rightcapital/eslint-config-typescript": "19.0.2",
"@rightcapital/prettier-config": "6.0.16",
"@commitlint/cli": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@commitlint/cz-commitlint": "19.2.0",
"@rightcapital/eslint-config-javascript": "29.0.0",
"@rightcapital/eslint-config-typescript": "29.0.0",
"@rightcapital/prettier-config": "7.1.3",
"@types/lodash": "4.17.4",
"@types/mustache": "4.2.5",
"@types/node": "20.14.2",
"beachball": "2.43.1",
"concurrently": "8.2.2",
"husky": "9.0.11",
"tsx": "4.13.0"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
"packageManager": "pnpm@9.0.4",
"engines": {
"node": ">=16.x",
"pnpm": ">=8.x"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}
Loading
Loading