Skip to content

Commit

Permalink
re-add ts-node patch
Browse files Browse the repository at this point in the history
  • Loading branch information
Joshix-1 committed Sep 30, 2024
1 parent 2e0830f commit feb9c7b
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ jobs:
key: eslint-${{ github.repository }}-${{ github.ref }}-${{ github.sha }}
restore-keys: eslint-${{ github.repository }}-${{ github.ref }}-
- name: Install ESLint
run: pnpm install
run: sed -ri 's/.+ts-node.+//' package.json && pnpm install --no-frozen-lockfile
- name: Run ESLint
run: pnpm eslint --cache .

Expand All @@ -215,7 +215,7 @@ jobs:
node-version: "18.20"
cache: pnpm
- name: Install tsc
run: pnpm install
run: sed -ri 's/.+ts-node.+//' package.json && pnpm install --no-frozen-lockfile
- name: Run tsc
run: |
pnpm tsc
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-no-unsupported-browser-features": "^8.0.1",
"stylelint-prettier": "^5.0.2",
"ts-node": "10.9.2",
"type-fest": "4.23.0",
"ts-node": "github:isaacs/ts-node#isaacs/node-20-fix",
"type-fest": "^4.23.0",
"typescript": "5.6.2",
"typescript-eslint": "8.7.0",
"typescript-eslint-language-service": "^5.0.5"
Expand All @@ -54,6 +54,7 @@
"webpack@4": "5"
},
"patchedDependencies": {
"ts-node@10.9.1": "patches/ts-node@10.9.1.patch",
"core-js-builder@3.37.1": "patches/core-js-builder@3.37.1.patch"
}
}
Expand Down
Loading

0 comments on commit feb9c7b

Please sign in to comment.