Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
- name: Checkout Branch
uses: actions/checkout@v1
- name: Setup Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
version: 14
node-version: 16
- name: Build Extension
run: |
npm install
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
# Run install dependencies
- name: Install dependencies
run: npm install
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules
vsix
.vscode-test/
*.vsix
test-resources/
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ dist
vsix
*.vsix
.vscode-test/
test-resources
8 changes: 8 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,14 @@
"label": "tasks: watch-tests",
"dependsOn": ["npm: watch", "npm: watch-tests"],
"problemMatcher": []
},
{
"type": "npm",
"script": "watch-tests",
"group": "build",
"problemMatcher": [],
"label": "npm: watch-tests",
"detail": "tsc -p . -w --outDir out"
}
]
}
10,511 changes: 790 additions & 9,721 deletions package-lock.json

Large diffs are not rendered by default.

8 changes: 7 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"onCommand:aks-draft-extension.runDraftDockerfile",
"onCommand:aks-draft-extension.runDraftDeployment",
"onCommand:aks-draft-extension.runDraftIngress",
"onCommand:aks-draft-extension.runDraftWorkflow",
"onCommand:aks-draft-extension.runBuildAcrImage"
],
"main": "./dist/extension.js",
Expand Down Expand Up @@ -51,6 +52,10 @@
"command": "aks-draft-extension.runDraftIngress",
"title": "AKS Developer: Draft a Kubernetes Ingress with Web App Routing"
},
{
"command": "aks-draft-extension.runDraftWorkflow",
"title": "AKS Developer: Draft a GitHub Action Deployment Workflow"
},
{
"command": "aks-draft-extension.runBuildAcrImage",
"title": "AKS Developer: Build an Image on Azure Container Registry"
Expand Down Expand Up @@ -173,7 +178,8 @@
},
"extensionDependencies": [
"ms-kubernetes-tools.vscode-kubernetes-tools",
"ms-azuretools.vscode-docker"
"ms-azuretools.vscode-docker",
"vscode.git"
],
"scripts": {
"vscode:prepublish": "npm run package",
Expand Down
Loading