Commit 94efbff 1 parent 636a7ec commit 94efbff Copy full SHA for 94efbff
File tree 3 files changed +12
-1
lines changed
3 files changed +12
-1
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ docker build -t vscode-go-by-example-devcontainer -f ./.devcontainer/Dockerfile ./.devcontainer
4
+ docker run -v ${PWD} :/workspaces/vscode-go-by-example --workdir /workspaces/vscode-go-by-example vscode-go-by-example-devcontainer bash -c " yarn run publish"
Original file line number Diff line number Diff line change
1
+ #! /bin/bash
2
+
3
+ docker build -t vscode-go-by-example-devcontainer -f ./.devcontainer/Dockerfile ./.devcontainer
4
+ docker run -v ${PWD} :/workspaces/vscode-go-by-example --workdir /workspaces/vscode-go-by-example vscode-go-by-example-devcontainer bash -c " yarn run pretest"
Original file line number Diff line number Diff line change 29
29
"watch" : " tsc -watch -p ./" ,
30
30
"pretest" : " yarn run compile && yarn run lint" ,
31
31
"lint" : " eslint src --ext ts" ,
32
- "test" : " node ./out/test/runTest.js"
32
+ "test" : " node ./out/test/runTest.js" ,
33
+ "package" : " vsce package" ,
34
+ "publish" : " vsce publish --yarn -p $MARKETPLACE_PUBLISH_PAT" ,
35
+ "publish-patch" : " vsce publish --yarn -p $MARKETPLACE_PUBLISH_PAT patch"
33
36
},
34
37
"devDependencies" : {
35
38
"@types/glob" : " ^7.1.3" ,
You can’t perform that action at this time.
0 commit comments