10000 Resolving issues by xaos7991 · Pull Request #11253 · typescript-eslint/typescript-eslint · GitHub
[go: up one dir, main page]

Skip to content

Resolving issues #11253

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

Closed
wants to merge 39 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
39 commits
Select commit Hold shift + click to select a range
0b9c67d
feat: migrated to pnpm
xaos7991 May 18, 2025
d78c30d
fix: replaced the variable with your own path
Jester175 May 19, 2025
e738b1b
fix: changed init path
Jester175 May 19, 2025
8227be7
fix: added files to ignore
Jester175 May 19, 2025
e1080b5
fix: changed init path
Jester175 May 19, 2025
ae63c55
Merge pull request #2 from xaos7991/replacing-variables
xaos7991 May 20, 2025
e4500eb
chore: migrated scripts from yarn to pnpm
xaos7991 May 20, 2025
78f97ca
chore: migrate scripts to pnpm
Jester175 May 20, 2025
b2740d3
chore: replaced yarn reference with pnpm
Jester175 May 20, 2025
47bca3f
chore: replaced yarn reference with pnpm
Jester175 May 20, 2025
caae48b
Merge pull request #4 from xaos7991/chore/migrate-scripts-to-pnpm
xaos7991 May 20, 2025
6ff72a1
chore: replaced yarn reference with pnpm
Jester175 May 20, 2025
83ea658
Merge pull request #5 from xaos7991/chore/migrate-scripts-to-pnpm
xaos7991 May 20, 2025
df07c3c
chore: added rule schema types
Jester175 May 21, 2025
0ffc5cc
Merge pull request #6 from xaos7991/chore/add-rule-schema-types
xaos7991 May 22, 2025
feb01b1
chore: fixed types
Jester175 May 22, 2025
9ed6376
Merge pull request #7 from xaos7991/chore/types
xaos7991 May 22, 2025
a497ac5
ci: migrated yarn to pnpm
xaos7991 May 23, 2025
351de42
fix: resolved issues with eslint-plugin tests
xaos7991 May 23, 2025
03bd8d3
chore: migrated to pnpm
Jester175 May 24, 2025
1de3fca
Merge pull request #8 from xaos7991/chore/launching-app-pnpm
xaos7991 May 24, 2025
77ca6dd
fix: resolved problems with versions of babel packages
xaos7991 May 24, 2025
644216b
fix: resolved problems with babel types
Jester175 May 25, 2025
0fe7f92
Merge pull request #9 from xaos7991/fix/babel-types
xaos7991 May 25, 2025
a6f9007
docs: updated comments to reflect pnpm usage instead of yarn
Jester175 May 25, 2025
08f458c
Merge pull request #10 from xaos7991/chore/docs-update-pnpm-comments
xaos7991 May 25, 2025
de5ee8b
ci: migrated from yarn to pnpm
xaos7991 May 25, 2025
46e0620
ci: removed pnpm version
xaos7991 May 25, 2025
88af74c
fix: added dependency ignore configuration
Jester175 May 25, 2025
7e51137
fix: added dependency ignore configuration
Jester175 May 25, 2025
d064374
fix: added dependency ignore configuration
Jester175 May 25, 2025
8b0b3f5
fix: added dependency ignore configuration
Jester175 May 25, 2025
1f4cdf3
fix: adjusted types and dependencies
Jester175 May 26, 2025
a285fd3
chore: added dependency ignore configuration
Jester175 May 26, 2025
8c0b7a7
fix: resolved issues in integration tests
Jester175 May 27, 2025
319a153
chore: removed duplicate plugin
Jester175 May 27, 2025
354e19f
Merge pull request #11 from xaos7991/fix/integration-tests-dependencies
xaos7991 May 27, 2025
7156616
Merge branch 'main' into migrate-to-pnpm
xaos7991 May 27, 2025
0cd5a29
ci: removed unnecessary script
xaos7991 May 29, 2025
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
10000
3 changes: 1 addition & 2 deletions .cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
"**/node_modules/**",
"packages/website/.docusaurus/**",
"packages/website/build/**",
"packages/website/src/vendor/**",
"yarn.lock"
"packages/website/src/vendor/**"
],
"dictionaries": [
"typescript",
Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/08-bug-report-complex.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ body:
description: The steps we need to take to reproduce the bug using your repro
value: |
1) clone the repo
2) `yarn install`
3) `yarn lint`
2) `pnpm install`
3) `pnpm run lint`
validations:
required: true
- type: textarea
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/prepare-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ runs:
if: steps['build-cache'].outputs.cache-hit == 'true'
shell: bash
run: |
yarn nx run types:build
pnpm exec nx run types:build
env:
SKIP_AST_SPEC_REBUILD: true

Expand All @@ -31,6 +31,6 @@ runs:
shell: bash
# Website will be built by the Netlify GitHub App
run: |
yarn nx run-many --target=build --parallel --exclude=website --exclude=website-eslint
pnpm exec nx run-many --target=build --parallel --exclude=website --exclude=website-eslint
env:
SKIP_AST_SPEC_REBUILD: true
40 changes: 7 additions & 33 deletions .github/actions/prepare-install/action.yml