Skip to content

Commit 0ef9db8

Browse files
committed
fix rename
1 parent 7d550cb commit 0ef9db8

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.vscode/launch.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
3939
],
4040
"outFiles": ["${workspaceFolder}/out/test/**/*.js"],
41-
"preLaunchTask": "npm: test-compile"
41+
"preLaunchTask": "npm: compile:test"
4242
},
4343
{
4444
"name": "Run Web Extension",

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ pnpm test
3434
pnpm test:web
3535

3636
# Compile tests only
37-
pnpm test-compile
37+
pnpm compile:test
3838
```
3939

4040
## Running Tests

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ Thank you for your interest in contributing to the Prettier VS Code extension! F
3535
```bash
3636
pnpm install # Install dependencies
3737
pnpm compile # Build for development (esbuild + type checking)
38+
pnpm compile:test # Compile tests only
3839
pnpm watch # Build and watch for changes
3940
pnpm lint # Run ESLint
4041
pnpm prettier # Format code with Prettier
4142
pnpm test # Run tests
42-
pnpm test-compile # Compile tests only
4343
```
4444

4545
### Running the Extension

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@
7474
"chrome": "pnpm compile && vscode-test-web --browserType=chromium --extensionDevelopmentPath=. .",
7575
"compile": "pnpm check-types && node esbuild.mjs",
7676
"lint": "eslint src *.mjs scripts",
77-
"pretest": "pnpm test-compile && node scripts/install-fixtures.mjs",
77+
"pretest": "pnpm compile:test && node scripts/install-fixtures.mjs",
7878
"prettier": "prettier --write .",
7979
"release": "node ./scripts/release.mjs",
80-
"test:web": "pnpm test-compile && node ./out/test/web/runTests.js",
80+
"test:web": "pnpm compile:test && node ./out/test/web/runTests.js",
8181
"test": "node ./out/test/runTests.js",
8282
"watch:esbuild": "node esbuild.mjs --watch",
8383
"watch:tsc": "tsc --noEmit --watch --project tsconfig.json",

0 commit comments

Comments
 (0)