Skip to content

Commit

Permalink
AU: 3 updated - mkdocs-material typescript webstorm
Browse files Browse the repository at this point in the history
  • Loading branch information
Chocolatey committed Jan 31, 2018
1 parent 5d90ce6 commit 16cac2f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 10 deletions.
2 changes: 1 addition & 1 deletion automatic/mkdocs-material/mkdocs-material.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>mkdocs-material</id>
<title>MkDocs Material Theme</title>
<version>2.5.4</version>
<version>2.5.5</version>
<authors>Martin Donath</authors>
<owners>chocolatey</owners>
<projectUrl>http://squidfunk.github.io/mkdocs-material/</projectUrl>
Expand Down
2 changes: 1 addition & 1 deletion automatic/mkdocs-material/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Update-SessionEnvironment

$version = '2.5.4'
$version = '2.5.5'

$proxy = Get-EffectiveProxy
if ($proxy) {
Expand Down
4 changes: 2 additions & 2 deletions automatic/typescript/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Update-SessionEnvironment

$npmPath = Get-Command npm | % { $_.Path }
$npmPath = Get-Command npm | ForEach-Object { $_.Path }
"Installing $env:chocolateyPackageName using nodejs..."
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@2.6.2"
Start-ChocolateyProcessAsAdmin $npmPath -statements install,"-g","typescript@2.7.1"
2 changes: 1 addition & 1 deletion automatic/typescript/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

Update-SessionEnvironment

$npmPath = Get-Command npm | % { $_.Path }
$npmPath = Get-Command npm | ForEach-Object { $_.Path }
"Uninstalling $env:chocolateyPackageName using nodejs..."
Start-ChocolateyProcessAsAdmin $npmPath -statements uninstall,"-g",typescript
6 changes: 4 additions & 2 deletions automatic/typescript/typescript.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>typescript</id>
<version>2.6.2</version>
<version>2.7.1</version>
<packageSourceUrl>https://github.com/chocolatey/chocolatey-coreteampackages/tree/master/automatic/typescript</packageSourceUrl>
<owners>chocolatey, Microsoft</owners>
<title>TypeScript</title>
Expand All @@ -20,8 +20,10 @@
<summary>TypeScript is a language for application-scale JavaScript development.</summary>
<!-- Do not touch the description here in the nuspec file. Description is imported during update from the Readme.md file -->
<description><![CDATA[[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types, classes, and modules to JavaScript. TypeScript supports tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript.
This package installs the command-line TypeScript compiler as a Node.js package.
]]></description>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+2.6.2%22+label%3A%22fixed%22+</releaseNotes>
<releaseNotes>https://github.com/Microsoft/TypeScript/issues?q=is%3Aissue+milestone%3A%22TypeScript+2.7.1%22+label%3A%22fixed%22+</releaseNotes>
<dependencies>
<dependency id="nodejs.install" version="4.2.0" />
</dependencies>
Expand Down
4 changes: 2 additions & 2 deletions automatic/webstorm/tools/ChocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
$arguments = @{
packageName = $env:ChocolateyPackageName
softwareName = 'JetBrains WebStorm*'
url = 'https://download.jetbrains.com/webstorm/WebStorm-2017.3.3.exe'
checksum = 'c84927077b809cf994cfd79bab163ee93ad875a954564f0c9ca43f0c7a0cfdbd'
url = 'https://download.jetbrains.com/webstorm/WebStorm-2017.3.4.exe'
checksum = '698eb510aa67b9d750f2ae29322ef0e07f92e745f65e4cd750bc07d7117d4c5d'
fileType = 'exe'
checksumType = 'sha256'
silentArgs = '/S'
Expand Down
2 changes: 1 addition & 1 deletion automatic/webstorm/webstorm.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
<metadata>
<id>webstorm</id>
<version>2017.3.3</version>
<version>2017.3.4</version>
<title>JetBrains WebStorm</title>
<authors>JetBrains</authors>
<licenseUrl>http://www.jetbrains.com/webstorm/buy/buy.jsp</licenseUrl>
Expand Down

0 comments on commit 16cac2f

Please sign in to comment.