File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change 47
47
run : |
48
48
pnpm run docs:build
49
49
pnpm run demo:build
50
+
51
+ extension :
52
+ name : VSCode Extension
53
+ runs-on : ubuntu-latest
54
+ steps :
55
+ - name : Checkout
56
+ uses : actions/checkout@v4
57
+
58
+ - uses : ./.github/actions/setup-and-build
59
+ - name : Build extension
60
+ run : |
61
+ pnpm run extension:build
Original file line number Diff line number Diff line change 109
109
"__dev" : " pnpm run esbuild-base -- --sourcemap --watch" ,
110
110
"__vscode:prepublish" : " pnpm run esbuild-base -- --minify" ,
111
111
"__build" : " vsce package" ,
112
- "compile " : " pnpm run check-types && node build.mjs" ,
112
+ "build " : " pnpm run check-types && node build.mjs" ,
113
113
"check-types" : " tsc --noEmit" ,
114
114
"dev" : " node build.mjs --watch" ,
115
115
"vscode:prepublish" : " pnpm run package" ,
Original file line number Diff line number Diff line change 7
7
"clean" : " ./scripts/clean.sh" ,
8
8
"prepare" : " is-ci || husky install" ,
9
9
"extension:dev" : " pnpm run --filter=tutorialkit-vscode dev" ,
10
+ "extension:build" : " pnpm run --filter=tutorialkit-vscode build" ,
10
11
"template:dev" : " TUTORIALKIT_DEV=true pnpm run build && pnpm run --filter=tutorialkit-starter dev" ,
11
12
"template:build" : " pnpm run build && pnpm run --filter=tutorialkit-starter build" ,
12
13
"cli:build-release" : " pnpm run --filter=tutorialkit build-release" ,
You can’t perform that action at this time.
0 commit comments