Skip to content

Commit 629e730

Browse files
committed
fix build
1 parent c4efcc7 commit 629e730

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
"args": [
1010
// prevent auto open of annoying windsurf cascade, see [Disabling Specific Plugins During VS Code Debugging - Claude](https://claude.ai/chat/7d10dc68-9be8-4955-9739-cee066da07c0)
1111
"--disable-extension=codeium.windsurf",
12-
"--extensionDevelopmentPath=${workspaceFolder}"
12+
"--extensionDevelopmentPath=${workspaceFolder}/packages/extension"
1313
],
14-
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
14+
"outFiles": ["${workspaceFolder}/packages/extension/dist/**/*.js"],
1515
"sourceMaps": true,
1616
"trace": true,
1717
"internalConsoleOptions": "neverOpen",

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,6 @@
2020
"debug.openDebug": "neverOpen",
2121
"debug.internalConsoleOptions": "neverOpen",
2222
"debug.showInStatusBar": "never",
23-
"explorer.autoReveal": false
23+
"explorer.autoReveal": false,
24+
"ohMyCommit.model.id": "omc-standard-claude-3.5"
2425
}

.vscode/tasks.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"label": "Dev Services",
66
"type": "shell",
77
"command": "concurrently",
8-
"args": ["pnpm --filter @oh-my-commit/extension dev", "pnpm --filter @oh-my-commit/webview dev"],
8+
"args": ["pnpm --filter oh-my-commit dev", "pnpm --filter @oh-my-commit/webview dev"],
99
"isBackground": true,
1010
"problemMatcher": [
1111
{

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"name": "oh-my-commit",
33
"displayName": "Oh My Commit",
4-
"private": false,
4+
"version": "0.0.0",
5+
"private": true,
56
"author": "markshawn2020",
67
"repository": {
78
"type": "git",

0 commit comments

Comments
 (0)