Skip to content

Commit a807adb

Browse files
committed
Switch to webpack
1 parent 7118feb commit a807adb

8 files changed

+3865
-62
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
src/token.ts
21
node_modules
32
out
3+
dist
44

55
*.vsix
66
.DS_Store

.vscode/launch.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
"--extensionDevelopmentPath=${workspaceFolder}"
1515
],
1616
"outFiles": [
17-
"${workspaceFolder}/out/**/*.js"
17+
"${workspaceFolder}/dist/**/*.js"
1818
],
1919
"preLaunchTask": "${defaultBuildTask}"
2020
},
@@ -28,7 +28,7 @@
2828
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
2929
],
3030
"outFiles": [
31-
"${workspaceFolder}/out/test/**/*.js"
31+
"${workspaceFolder}/dist/test/**/*.js"
3232
],
3333
"preLaunchTask": "${defaultBuildTask}"
3434
}

.vscodeignore

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
.vscode
2+
node_modules
3+
out/
4+
src/
5+
tsconfig.json
6+
webpack.config.js

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# GitHub Actions for VS Code
22

3-
![Build](https://github.com/cschleiden/vscode-github-actions/workflows/Build/badge.svg)
3+
![GitHub Workflow Status](https://img.shields.io/github/workflow/status/cschleiden/vscode-github-actions/Build)
44

55
Very simple, unofficial extension to interact with GitHub Actions from within VS Code.
66

0 commit comments

Comments
 (0)