This commit is contained in:
vikas0212git 2021-09-22 17:06:42 -07:00
Родитель 04e0b1eedd
Коммит b5d182463e
4 изменённых файлов: 9 добавлений и 9 удалений

6
package-lock.json сгенерированный
Просмотреть файл

@ -5968,8 +5968,8 @@
"dev": true "dev": true
}, },
"vscode": { "vscode": {
"version": "1.59.0", "version": "1.1.37",
"resolved": "https://registry.npmjs.org/vscode/-/vscode-1.59.0.tgz", "resolved": "https://registry.npmjs.org/vscode/-/vscode-1.1.37.tgz",
"integrity": "sha512-vJNj6IlN7IJPdMavlQa1KoFB3Ihn06q1AiN3ZFI/HfzPNzbKZWPPuiU+XkpNOfGU5k15m4r80nxNPlM7wcc0wg==", "integrity": "sha512-vJNj6IlN7IJPdMavlQa1KoFB3Ihn06q1AiN3ZFI/HfzPNzbKZWPPuiU+XkpNOfGU5k15m4r80nxNPlM7wcc0wg==",
"dev": true, "dev": true,
"requires": { "requires": {
@ -6051,7 +6051,7 @@
}, },
"vscode-extension-telemetry": { "vscode-extension-telemetry": {
"version": "0.1.6", "version": "0.1.6",
"resolved": "https://registry.npmjs.org/https://update.code.visualstudio.com/1.60.2/linux-x64/stable-extension-telemetry/-/vscode-extension-telemetry-0.1.6.tgz", "resolved": "https://registry.npmjs.org/vscode-extension-telemetry/-/vscode-extension-telemetry-0.1.6.tgz",
"integrity": "sha512-rbzSg7k4NnsCdF4Lz0gI4jl3JLXR0hnlmfFgsY8CSDYhXgdoIxcre8jw5rjkobY0xhSDhbG7xCjP8zxskySJ/g==", "integrity": "sha512-rbzSg7k4NnsCdF4Lz0gI4jl3JLXR0hnlmfFgsY8CSDYhXgdoIxcre8jw5rjkobY0xhSDhbG7xCjP8zxskySJ/g==",
"requires": { "requires": {
"applicationinsights": "1.7.4" "applicationinsights": "1.7.4"

Просмотреть файл

@ -537,7 +537,7 @@
"@types/express": "^4.11.1", "@types/express": "^4.11.1",
"@types/fs-extra": "^4.0.3", "@types/fs-extra": "^4.0.3",
"@types/mocha": "^2.2.32", "@types/mocha": "^2.2.32",
"@types/node": "16.5.0", "@types/node": "^6.0.40",
"@types/request-promise": "^4.1.41", "@types/request-promise": "^4.1.41",
"@types/semver": "^5.5.0", "@types/semver": "^5.5.0",
"@types/sinon": "^7.0.13", "@types/sinon": "^7.0.13",
@ -551,7 +551,7 @@
"ts-loader": "^4.4.2", "ts-loader": "^4.4.2",
"tslint": "^5.20.1", "tslint": "^5.20.1",
"typescript": "^2.0.3", "typescript": "^2.0.3",
"vscode": "^1.59", "vscode": "^1.1.37",
"webpack": "^4.19.1", "webpack": "^4.19.1",
"webpack-cli": "^3.1.0" "webpack-cli": "^3.1.0"
}, },
@ -579,4 +579,4 @@
"ms-vscode.azure-account", "ms-vscode.azure-account",
"vsciot-vscode.azure-iot-toolkit" "vsciot-vscode.azure-iot-toolkit"
] ]
} }

Просмотреть файл

@ -13,7 +13,7 @@ stages:
displayName: 'Start xvfb' displayName: 'Start xvfb'
- script: | - script: |
npm test --silent npm test
displayName: 'npm test' displayName: 'npm test'
- script: | - script: |

Просмотреть файл

@ -2,13 +2,13 @@
- task: NodeTool@0 - task: NodeTool@0
displayName: Install NodeJs displayName: Install NodeJs
inputs: inputs:
versionSpec: '16.5.0' versionSpec: '16.x'
checkLatest: true
- script: | - script: |
npm install npm install
sudo npm install -g vsce sudo npm install -g vsce
npm audit fix --force
displayName: 'npm install' displayName: 'npm install'