Skip to content

Commit 1363e8a

Browse files
committed
Merge branch 'release/0.5.0'
* release/0.5.0: (31 commits) (maint) Update Chocolatey dependency Bump mocha from 6.0.2 to 6.1.4 Bump typescript from 3.3.4000 to 3.4.4 Bump vscode from 1.1.30 to 1.1.33 Bump tslint from 5.14.0 to 5.16.0 Bump @types/xml2js from 0.4.3 to 0.4.4 Bump @types/node-fetch from 2.1.7 to 2.3.2 (build) Fixing build settings Bump expect from 24.5.0 to 24.7.1 (GH-20) Switch to using Chocolatey Extension (GH-72) Changed all URL's to use gep13-oss (build) Added dependabot config Bump @types/node from 11.12.0 to 11.13.6 Bump @types/node from 11.11.6 to 11.12.0 Bump @types/node from 11.11.5 to 11.11.6 Bump @types/node from 11.11.4 to 11.11.5 Bump @types/node-fetch from 2.1.6 to 2.1.7 Bump @types/node from 11.11.3 to 11.11.4 Bump typescript from 3.3.3333 to 3.3.4000 Bump tslint from 5.13.1 to 5.14.0 ...
2 parents 116ad03 + 0e5ffbe commit 1363e8a

11 files changed

+419
-1494
lines changed

.dependabot/config.yml

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
version: 1
2+
update_configs:
3+
- package_manager: "javascript"
4+
directory: "/"
5+
update_schedule: "daily"
6+
target_branch: "develop"
7+
version_requirement_updates: "auto"
8+
default_reviewers:
9+
- "gep13"
10+
default_assignees:
11+
- "gep13"
12+
default_labels:
13+
- "dependabot"

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@ You can find the documentation that is available for this project [here](https:/
4242

4343
## Contributing
4444

45-
If you would like to see any features added for this VS Code Extension, feel free to raise an [issue](https://github.com/gep13/cakerecipe-vscode/issues), and if possible, a follow up pull request.
45+
If you would like to see any features added for this VS Code Extension, feel free to raise an [issue](https://github.com/gep13-oss/cakerecipe-vscode/issues), and if possible, a follow up pull request.
4646

4747
You can also join in the Gitter Chat [![Join the chat at https://gitter.im/gep13-oss/community](https://badges.gitter.im/gep13-oss/community.svg)](https://gitter.im/gep13-oss/community?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
4848

4949
## Releases
5050

51-
To find out what was released in each version of this extension, check out the [releases](https://github.com/gep13/cakerecipe-vscode/releases) page.
51+
To find out what was released in each version of this extension, check out the [releases](https://github.com/gep13-oss/cakerecipe-vscode/releases) page.

chocolatey/cakerecipe-vscode.nuspec

+8-7
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@
88
<title>Cake.Recipe VSCode extension</title>
99
<authors>Gary Ewan Park</authors>
1010
<!-- projectUrl is required for the community feed -->
11-
<projectUrl>https://github.com/gep13/cakerecipe-vscode</projectUrl>
12-
<iconUrl>https://cdn.jsdelivr.net/gh/gep13/cakerecipe-vscode@fad27d1ffa1889ffb84721fc1e3f2b68b58d90eb/images/icon.png</iconUrl>
11+
<projectUrl>https://github.com/gep13-oss/cakerecipe-vscode</projectUrl>
12+
<iconUrl>https://cdn.jsdelivr.net/gh/gep13-oss/cakerecipe-vscode@fad27d1ffa1889ffb84721fc1e3f2b68b58d90eb/images/icon.png</iconUrl>
1313
<copyright>Copyright (c) 2018 Gary Ewan Park</copyright>
14-
<licenseUrl>https://github.com/gep13/cakerecipe-vscode/blob/develop/LICENSE</licenseUrl>
14+
<licenseUrl>https://github.com/gep13-oss/cakerecipe-vscode/blob/develop/LICENSE</licenseUrl>
1515
<requireLicenseAcceptance>true</requireLicenseAcceptance>
16-
<projectSourceUrl>https://github.com/gep13/cakerecipe-vscode</projectSourceUrl>
17-
<bugTrackerUrl>https://github.com/gep13/cakerecipe-vscode/issues</bugTrackerUrl>
16+
<projectSourceUrl>https://github.com/gep13-oss/cakerecipe-vscode</projectSourceUrl>
17+
<bugTrackerUrl>https://github.com/gep13-oss/cakerecipe-vscode/issues</bugTrackerUrl>
1818
<tags>cakerecipe-vscode vscode extension</tags>
1919
<summary>Cake.Recipe Extension for Visual Studio Code</summary>
2020
<description>
@@ -26,9 +26,10 @@ The Cake.Recipe Visual Studio Code provides the following commands:
2626
- `Cake.Recipe: Add default recipe.cake file`
2727
</description>
2828
<releaseNotes>
29-
Full release notes found on [GitHub Release Page](https://github.com/gep13/cakerecipe-vscode/releases)</releaseNotes>
29+
Full release notes found on [GitHub Release Page](https://github.com/gep13-oss/cakerecipe-vscode/releases)</releaseNotes>
3030
<dependencies>
31-
<dependency id="vscode" version="1.24.0" /> <!-- Should be set to the minimum version the extension supports -->
31+
<dependency id="vscode" version="1.33.0" /> <!-- Should be set to the minimum version the extension supports -->
32+
<dependency id="chocolatey-vscode.extension" version="1.0.0" />
3233
</dependencies>
3334
</metadata>
3435
<!-- Files will be added during build -->

chocolatey/tools/Install-VsCodeExtension.ps1

-18
This file was deleted.

chocolatey/tools/Uninstall-VsCodeExtension.ps1

-18
This file was deleted.

chocolatey/tools/VERIFICATION.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ in verifying that this package's contents are trustworthy.
55
This package is being officially supplied by the software author of these scripts (Gary Ewan Park)
66

77
The included binary file can be downloaded from our releases page located at
8-
<https://github.com/gep13/cakerecipe-vscode/releases>
8+
<https://github.com/gep13-oss/cakerecipe-vscode/releases>
99

1010
and should match the checksum of the included vsix file.
1111

1212
The file 'LICENSE.md' is also available in the repository at
13-
<https://github.com/gep13/cakerecipe-vscode/blob/develop/LICENSE>
13+
<https://github.com/gep13-oss/cakerecipe-vscode/blob/develop/LICENSE>
+1-7
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
$ErrorActionPreference = 'Stop'
22
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
3-
. "$toolsDir\Install-VsCodeExtension.ps1"
43

5-
$packageArgs = @{
6-
packageName = $env:ChocolateyPackageName
7-
extensionPath = "$toolsDir\cakerecipe-vscode.vsix"
8-
}
9-
10-
Install-VsCodeExtension @packageArgs
4+
Install-VsCodeExtension "$toolsDir\cakerecipe-vscode.vsix"
+1-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
$ErrorActionPreference = 'Stop'
22

33
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
4-
. "$toolsDir\Uninstall-VsCodeExtension.ps1"
54

6-
$packageArgs = @{
7-
packageName = $env:ChocolateyPackageName
8-
extensionName = 'gep13.cakerecipe-vscode'
9-
}
10-
11-
Uninstall-VsCodeExtension @packageArgs
5+
Uninstall-VsCodeExtension "gep13.cakerecipe-vscode"

0 commit comments

Comments
 (0)