Merge branch 'main' into alex/couldNotConnectMessage

This commit is contained in:
Alex Weininger 2021-05-08 01:16:30 -07:00 committed by GitHub
commit c908162b7d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 1085 additions and 2 deletions

View file

@ -0,0 +1,36 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
trigger:
- main
pool:
vmImage: ubuntu-latest
steps:
- task: NodeTool@0
displayName: 'Use Node 12.x'
inputs:
versionSpec: 12.x
- task: Npm@1
displayName: 'npm ci'
inputs:
command: ci
- script: npm run package
displayName: package
- script: npx vsce package
- task: CopyFiles@2
displayName: 'Copy vsix to staging directory'
inputs:
Contents: '**/*.vsix'
TargetFolder: '$(build.artifactstagingdirectory)'
- task: PublishBuildArtifacts@1
displayName: 'Publish artifacts: vsix'
inputs:
PathtoPublish: '$(build.artifactstagingdirectory)'
ArtifactName: vsix

1050
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -507,6 +507,7 @@
"mocha": "^8.2.1", "mocha": "^8.2.1",
"ts-loader": "^8.0.14", "ts-loader": "^8.0.14",
"typescript": "^4.1.3", "typescript": "^4.1.3",
"vsce": "^1.88.0",
"vscode-test": "^1.5.0", "vscode-test": "^1.5.0",
"webpack": "^5.19.0", "webpack": "^5.19.0",
"webpack-cli": "^4.4.0" "webpack-cli": "^4.4.0"