Skip to content

Commit 71fb8bc

Browse files
committed
ci: fix
1 parent 4d2a73b commit 71fb8bc

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ jobs:
5959
run_install: |
6060
- recursive: true
6161
args: [--frozen-lockfile, --prefer-offline]
62-
- run: pnpm run ts-node-run ./scripts/md-to-package-json.ts --exit-code
62+
- run: pnpm run ts-node-run -- ./scripts/md-to-package-json.ts --exit-code
6363
- run: pnpm run lint
6464
- run: pnpm run typecheck
6565
- run: pnpm run coverage

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"CHANGELOG.md"
3232
],
3333
"scripts": {
34-
"build": "pnpm run ts-node-run ./scripts/build.ts",
34+
"build": "pnpm run ts-node-run -- ./scripts/build.ts",
3535
"coverage": "jest --coverage",
3636
"dev": "onchange -i \"**/*.ts\" \"tsconfig*.json\" -- pnpm run build",
3737
"lint-fix": "pnpm run lint -- --fix",
@@ -72,7 +72,7 @@
7272
"tsdetect.mode": {
7373
"type": "string",
7474
"default": "auto",
75-
"markdownDescription": "Set this `\"manual\"` to disable auto initialization. Variable `b:tsdetect_is_node` remains avaiable.",
75+
"markdownDescription": "Set this `\"manual\"` to disable auto initialization. Variable `b:tsdetect_is_node` remains available.",
7676
"enum": [
7777
"auto",
7878
"manual"
@@ -113,7 +113,7 @@
113113
"examples": [
114114
{}
115115
],
116-
"markdownDescription": "Workspace configuration to be set in Node.js environtment. If you want to extend original configuration, you need to include default ones. Not recommended to touch `deno.enable` and `tsserver.enable`."
116+
"markdownDescription": "Workspace configuration to be set in Node.js environment. If you want to extend original configuration, you need to include default ones. Not recommended to touch `deno.enable` and `tsserver.enable`."
117117
},
118118
"tsdetect.denoOverride": {
119119
"type": "object",
@@ -133,7 +133,7 @@
133133
"deno.unstable": true
134134
}
135135
],
136-
"markdownDescription": "Workspace configuration to be set in Deno environtment. If you want to extend original configuration, you need to include default ones. Not recommended not to touch `deno.enable` and `tsserver.enable`."
136+
"markdownDescription": "Workspace configuration to be set in Deno environment. If you want to extend original configuration, you need to include default ones. Not recommended not to touch `deno.enable` and `tsserver.enable`."
137137
}
138138
}
139139
}
@@ -182,4 +182,4 @@
182182
"engines": {
183183
"coc": "^0.0.80"
184184
}
185-
}
185+
}

0 commit comments

Comments
 (0)