Parcourir la source

Update Closure Compiler to v20200204

This commit also adjusts the method for checking versions for Closure
Compiler. The GitHub repository does not have the latest release
correctly tagged, so I switched to a regular expression linked to the
releases page.
master
Ashton Charbonneau il y a 4 ans
Parent
révision
85138f8d19
2 fichiers modifiés avec 7 ajouts et 6 suppressions
  1. 1
    1
      README.md
  2. 6
    5
      bucket/closure-compiler.json

+ 1
- 1
README.md Voir le fichier

@@ -2,7 +2,7 @@ Personal [Scoop](https://github.com/lukesampson/scoop) bucket containing custom
2 2
 
3 3
 Current programs:
4 4
 
5
-- [Closure Compiler](https://developers.google.com/closure/compiler/) v20200112 ([GitHub releases](https://github.com/google/closure-compiler/releases))
5
+- [Closure Compiler](https://developers.google.com/closure/compiler/) v20200204 ([GitHub releases](https://github.com/google/closure-compiler/releases))
6 6
 - [Dual Key Remap](https://github.com/ililim/dual-key-remap) v0.4 ([GitHub releases](https://github.com/ililim/dual-key-remap/releases))
7 7
 - [Go Replace](https://github.com/piranha/goreplace) v2.5 ([GitHub releases](https://github.com/piranha/goreplace/releases))
8 8
 - [Google Play Music Desktop Player](https://www.googleplaymusicdesktopplayer.com/) v4.7.1 ([GitHub releases](https://github.com/MarshallOfSound/Google-Play-Music-Desktop-Player-UNOFFICIAL-/releases))

+ 6
- 5
bucket/closure-compiler.json Voir le fichier

@@ -1,17 +1,18 @@
1 1
 {
2 2
 	"homepage": "https://developers.google.com/closure/compiler/",
3 3
 	"description": "The Closure Compiler is a tool for making JavaScript download and run faster. Instead of compiling from a source language to machine code, it compiles from JavaScript to better JavaScript.",
4
-	"version": "20200112",
4
+	"version": "20200204",
5 5
 	"license": "Apache-2.0",
6
-	"url": "https://dl.google.com/closure-compiler/compiler-20200112.zip",
7
-	"hash": "sha256:EC2FD8BEB15EC8CAF9D18ED803F0A350E6FCD8DC8B397D6D64ECE331994D86EA",
6
+	"url": "https://dl.google.com/closure-compiler/compiler-20200204.zip",
7
+	"hash": "sha256:D5F3182D80958A63D500D60CA1CA3695AB1C8CD8D4CBA7DA59BA4016D23F2B0B",
8 8
 	"bin": [
9 9
 		[
10
-			"closure-compiler-v20200112.jar",
10
+			"closure-compiler-v20200204.jar",
11 11
 			"closure-compiler"
12 12
 		]
13 13
 	],
14 14
 	"checkver": {
15
-		"github": "https://github.com/google/closure-compiler"
15
+		"url": "https://github.com/google/closure-compiler/releases",
16
+		"regex": "v([\\d]{8})"
16 17
 	}
17 18
 }

Chargement…
Annuler
Enregistrer