-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* release/0.5.0: (32 commits) (maint) Update Chocolatey dependency Bump typescript from 3.3.4000 to 3.4.4 Bump vscode from 1.1.30 to 1.1.33 Bump mocha from 6.0.2 to 6.1.4 Bump tslint from 5.14.0 to 5.16.0 Bump expect from 24.5.0 to 24.7.1 (build) Fixing build settings Bump @types/node-fetch from 2.3.0 to 2.3.2 (GH-42) Switch to using Chocolatey Extension (GH-94) Updated url's to use gep13-oss (build) Added dependabot config Bump @types/node from 11.12.0 to 11.13.6 Bump @types/node-fetch from 2.1.7 to 2.3.0 Bump @types/xml2js from 0.4.3 to 0.4.4 Bump @types/node from 11.11.6 to 11.12.0 Bump @types/node from 11.11.4 to 11.11.6 Bump typescript from 3.3.3333 to 3.3.4000 Bump @types/node-fetch from 2.1.6 to 2.1.7 Bump @types/node from 11.11.3 to 11.11.4 Bump @types/node from 11.11.1 to 11.11.3 ...
- Loading branch information
Showing
13 changed files
with
518 additions
and
1,791 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
version: 1 | ||
update_configs: | ||
- package_manager: "javascript" | ||
directory: "/" | ||
update_schedule: "daily" | ||
target_branch: "develop" | ||
version_requirement_updates: "auto" | ||
default_reviewers: | ||
- "gep13" | ||
default_assignees: | ||
- "gep13" | ||
default_labels: | ||
- "dependabot" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,4 @@ | ||
$ErrorActionPreference = 'Stop' | ||
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" | ||
. "$toolsDir\Install-VsCodeExtension.ps1" | ||
|
||
$packageArgs = @{ | ||
packageName = $env:ChocolateyPackageName | ||
extensionPath = "$toolsDir\ci-cd-assets-vscode.vsix" | ||
} | ||
|
||
Install-VsCodeExtension @packageArgs | ||
Install-VsCodeExtension "$toolsDir\ci-cd-assets-vscode.vsix" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
$ErrorActionPreference = 'Stop' | ||
|
||
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)" | ||
. "$toolsDir\Uninstall-VsCodeExtension.ps1" | ||
|
||
$packageArgs = @{ | ||
packageName = $env:ChocolateyPackageName | ||
extensionName = 'gep13.ci-cd-assets-vscode' | ||
} | ||
|
||
Uninstall-VsCodeExtension @packageArgs | ||
Uninstall-VsCodeExtension "gep13.ci-cd-assets-vscode-vscode" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.