Merge branch 'main' into alex/couldNotConnectMessage
This commit is contained in:
commit
c908162b7d
3 changed files with 1085 additions and 2 deletions
36
.azure-pipelines/package.yml
Normal file
36
.azure-pipelines/package.yml
Normal 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
1050
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue