Skip to content

Commit

Permalink
chore: Add CI Publishing Tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
JustinGrote committed Jul 24, 2021
1 parent 772855e commit 8d93765
Show file tree
Hide file tree
Showing 6 changed files with 2,311 additions and 10,662 deletions.
13 changes: 0 additions & 13 deletions .releaserc.yml

This file was deleted.

6 changes: 4 additions & 2 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@
"recommendations": [
"ms-vscode.powershell-preview",
"github.vscode-pull-request-github",
"cschleiden.vscode-github-actions"

"cschleiden.vscode-github-actions",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"connor4312.esbuild-problem-matchers"
]
}
23 changes: 18 additions & 5 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,27 +4,40 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
{
"version": "0.2.0",
"configurations": [{
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--install-extension=ms-vscode.powershell-preview",
"--extensionDevelopmentPath=${workspaceFolder}",
"--install-extension=ms-vscode.powershell-preview",
"${workspaceFolder}/sample"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch",
"smartStep": true,
"skipFiles": [
"C:/users/jgrote/AppData/Local/Programs/Microsoft VS Code Insiders/**/*.js",
"**/app/out/vs/**",
"**\\app\\out\\vs\\**",
"<node_internals>/**"
]
],
"preLaunchTask": "npm: watch"
},
{
"name": "Extension Tests",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
"--extensionTestsPath=${workspaceFolder}/out/test/suite/index"
],
"outFiles": [
"${workspaceFolder}/out/test/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}
21 changes: 9 additions & 12 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
{
"type": "npm",
"script": "watch",
"group": "build",
// "problemMatcher": "$esbuild-watch",
"problemMatcher": {
"owner": "typescript",
"source": "ts",
Expand All @@ -26,22 +28,17 @@
}
},
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
"label": "npm: watch",
},
{
"type": "npm",
"script": "compile",
"problemMatcher": "$tsc",
"presentation": {
"reveal": "never"
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"group": "build"
"problemMatcher": "$esbuild",
"label": "npm: build",
}
]
}
Loading

0 comments on commit 8d93765

Please sign in to comment.