Skip to content

Commit 52c38d7

Browse files
committed
細かい修正
1 parent cfa77b1 commit 52c38d7

8 files changed

Lines changed: 49 additions & 93 deletions

File tree

.github/workflows/create-release-pr.yml

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,18 +34,8 @@ jobs:
3434
git config user.name "github-actions[bot]"
3535
git config user.email "github-actions[bot]@users.noreply.github.com"
3636
37-
- name: Setup Node.js
38-
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
39-
with:
40-
node-version: 'lts/*'
41-
check-latest: true
42-
package-manager-cache: false
43-
44-
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
45-
with:
46-
run_install: |
47-
- recursive: true
48-
args: [--frozen-lockfile]
37+
- name: Install pnpm
38+
uses: pnpm/setup@5d160c5bc68a09337ad0d5654e237e03253b5879 # v1.0.0
4939

5040
# No need to install dependencies - npm version works without them
5141
- name: Version bump

.github/workflows/deploy.yml

Lines changed: 4 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -51,20 +51,11 @@ jobs:
5151
with:
5252
persist-credentials: false
5353

54-
- name: Use Node.js
55-
uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0
56-
with:
57-
node-version: 'lts/*'
58-
check-latest: true
59-
package-manager-cache: false
54+
- name: Install pnpm
55+
uses: pnpm/setup@5d160c5bc68a09337ad0d5654e237e03253b5879 # v1.0.0
6056

61-
- uses: pnpm/action-setup@0ebf47130e4866e96fce0953f49152a61190b271 # v6.0.9
62-
name: Install pnpm
63-
with:
64-
run_install: |
65-
- recursive: true
66-
args: [--no-frozen-lockfile]
67-
- args: [--global, esbuild]
57+
- name: Install global dependenceis
58+
run: pnpm add -g esbuild
6859

6960
- name: Build
7061
run: pnpm build

.github/workflows/scorecard.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,6 @@ jobs:
7575
# Upload the results to GitHub's code scanning dashboard (optional).
7676
# Commenting out will disable upload of results to your repo's Code Scanning dashboard
7777
- name: "Upload to code-scanning"
78-
uses: github/codeql-action/upload-sarif@e4fba868fa4b1b91e1fdab776edc8cfbe6e9fb81 # v4.37.3
78+
uses: github/codeql-action/upload-sarif@f205ea1c3313d32999d8d6a48b4f6530d4437b38 # v4.37.4
7979
with:
8080
sarif_file: results.sarif

example/eslint.config.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,10 @@ const eslintConfig: Config[] = defineConfig(
4545
sourceType: 'module',
4646
parser,
4747
parserOptions: {
48-
projectService: false,
48+
projectService: {
49+
allowDefaultProject: ['eslint.config.ts'],
50+
},
4951
tsconfigRootDir: __dirname,
50-
project: ['./tsconfig-eslint.json'],
5152
},
5253
},
5354
extends: [

example/tsconfig-eslint.json

Lines changed: 0 additions & 11 deletions
This file was deleted.

package/tsconfig-eslint.json

Lines changed: 0 additions & 15 deletions
This file was deleted.

pnpm-lock.yaml

Lines changed: 38 additions & 38 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pnpm-workspace.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ blockExoticSubdeps: true
1111
minimumReleaseAge: 10080 # 7 days in minutes
1212

1313
minimumReleaseAgeExclude:
14-
- pnpm@11.17.0
14+
- pnpm@11.19.0
1515
- '@modelcontextprotocol/sdk@1.30.0'
1616
- brace-expansion@5.0.8
1717

0 commit comments

Comments
 (0)