File tree Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Expand file tree Collapse file tree 3 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 39
39
echo "AppVersion=$APP_VERSION" >> $GITHUB_OUTPUT
40
40
echo "app version = v$APP_VERSION"
41
41
42
+ - name : Compile
43
+ run : npm run build
44
+
42
45
- name : Build VSIX package
43
46
run : npm run package -- -o vscode-string-manipulation.v${{ steps.calculateVersion.outputs.AppVersion }}.vsix
44
47
Original file line number Diff line number Diff line change 1
- .vscode /**
2
- .vscode-test /**
3
- test /**
4
1
.gitignore
5
- vsc-extension-quickstart.md
6
- ** /jsconfig.json
7
- ** /* .map
2
+ .vscode
3
+ .vscode-test /**
8
4
** /.eslintrc.json
5
+ ** /* .map
6
+ ** /jsconfig.json
7
+ node_modules
8
+ # out/
9
+ src /
10
+ test /**
11
+ tsconfig.json
Original file line number Diff line number Diff line change 20
20
"categories" : [
21
21
" Other"
22
22
],
23
- "main" : " ./out/extension" ,
24
- "activationEvents" : [
23
+ "main" : " ./out/extension.js " ,
24
+ "activationEvents" : [
25
25
" onCommand:string-manipulation.titleize" ,
26
26
" onCommand:string-manipulation.titleizeApStyle" ,
27
27
" onCommand:string-manipulation.titleizeChicagoStyle" ,
335
335
"test" : " node ./test/runTest.js" ,
336
336
"build" : " tsc" ,
337
337
"package" : " (rm -rf out || true) && mkdir out && cp package.json out && vsce package" ,
338
- "vsce" : " vsce" ,
339
- "debug" : " code --extensionDevelopmentPath=./"
338
+ "vscode:prepublish" : " tsc -p ./"
340
339
},
341
340
"devDependencies" : {
342
341
"@types/glob" : " ^7.1.3" ,
You can’t perform that action at this time.
0 commit comments