Skip to content

Commit d1d1312

Browse files
committed
fix: resolve workflow conflicts and extension build paths
- Fix VS Code extension main entry path to match build output - Bump version to 1.0.1 to avoid npm version conflict - Prevent duplicate release workflows by excluding vscode tags - VS Code extension now builds to correct location
1 parent 6bb6c29 commit d1d1312

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- 'v*'
7+
- '!vscode-v*' # Exclude VS Code extension tags
78
workflow_dispatch:
89
inputs:
910
version:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@typeweaver/commitweave",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "A modern CLI to write smart, structured, and beautiful git commit messages with emoji support, conventional commit rules, AI-powered summaries (optional), and built-in hooks.",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

vscode-extension/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "commitweave",
33
"displayName": "CommitWeave",
44
"description": "Smart, structured, and beautiful git commits with AI assistance - by GLINR STUDIOS",
5-
"version": "1.0.0",
5+
"version": "1.0.1",
66
"publisher": "glincker",
77
"engines": {
88
"vscode": "^1.80.0"
@@ -23,7 +23,7 @@
2323
"onCommand:commitweave.ai",
2424
"onCommand:commitweave.configure"
2525
],
26-
"main": "./out/extension.js",
26+
"main": "./out/src/extension.js",
2727
"contributes": {
2828
"commands": [
2929
{

0 commit comments

Comments
 (0)