Skip to content

Commit 6df90e8

Browse files
committed
updated dependencies to work with latest nightly
1 parent 233c8d7 commit 6df90e8

File tree

6 files changed

+19
-14
lines changed

6 files changed

+19
-14
lines changed

.haxerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
{
2-
"version": "c1056e4",
2+
"version": "5645ecc",
33
"resolveLibs": "scoped"
44
}

haxe_libraries/hxargs.hxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
-D hxargs=3.0.2
2-
# @install: lix --silent download "gh://github.com/Simn/hxargs#27eb1114ebcc82fe02abf2cfa3738ae6f43b0e24" into hxargs/3.0.2/github/27eb1114ebcc82fe02abf2cfa3738ae6f43b0e24
3-
-cp ${HAXE_LIBCACHE}/hxargs/3.0.2/github/27eb1114ebcc82fe02abf2cfa3738ae6f43b0e24/
1+
# @install: lix --silent download "gh://github.com/simn/hxargs#1d8ec84f641833edd6f0cb2e4290b7524fd27219" into hxargs/3.0.2/github/1d8ec84f641833edd6f0cb2e4290b7524fd27219
2+
-cp ${HAXE_LIBCACHE}/hxargs/3.0.2/github/1d8ec84f641833edd6f0cb2e4290b7524fd27219/
3+
-D hxargs=3.0.2

haxe_libraries/hxcpp.hxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @install: lix --silent download "gh://github.com/HaxeFoundation/hxcpp#75b25c32b14a8989af59371589b00735e1630697" into hxcpp/4.2.0/github/75b25c32b14a8989af59371589b00735e1630697
2-
# @run: haxelib run-dir hxcpp "${HAXE_LIBCACHE}/hxcpp/4.2.0/github/75b25c32b14a8989af59371589b00735e1630697"
3-
-cp ${HAXE_LIBCACHE}/hxcpp/4.2.0/github/75b25c32b14a8989af59371589b00735e1630697/
1+
# @install: lix --silent download "gh://github.com/HaxeFoundation/hxcpp#3e96dbd3e24d6497803eba87542a1684ed633948" into hxcpp/4.2.0/github/3e96dbd3e24d6497803eba87542a1684ed633948
2+
# @run: haxelib run-dir hxcpp "${HAXE_LIBCACHE}/hxcpp/4.2.0/github/3e96dbd3e24d6497803eba87542a1684ed633948"
3+
-cp ${HAXE_LIBCACHE}/hxcpp/4.2.0/github/3e96dbd3e24d6497803eba87542a1684ed633948/
44
-D hxcpp=4.2.0

haxe_libraries/json2object.hxml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# @install: lix --silent download "haxelib:/json2object#3.10.0" into json2object/3.10.0/haxelib
1+
# @install: lix --silent download "gh://github.com/elnabo/json2object#64b46769a143207f266010997ea24aa9764505ce" into json2object/3.10.0/github/64b46769a143207f266010997ea24aa9764505ce
22
-lib hxjsonast
3-
-cp ${HAXE_LIBCACHE}/json2object/3.10.0/haxelib/src
3+
-cp ${HAXE_LIBCACHE}/json2object/3.10.0/github/64b46769a143207f266010997ea24aa9764505ce/src
44
-D json2object=3.10.0

haxe_libraries/tokentree.hxml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
# @install: lix --silent download "haxelib:/tokentree#1.2.3" into tokentree/1.2.3/haxelib
2-
-cp ${HAXE_LIBCACHE}/tokentree/1.2.3/haxelib/src
3-
-D tokentree=1.2.3
1+
# @install: lix --silent download "haxelib:/tokentree#1.2.5" into tokentree/1.2.5/haxelib
2+
-cp ${HAXE_LIBCACHE}/tokentree/1.2.5/haxelib/src
3+
-D tokentree=1.2.5

src/checkstyle/reporter/JSONReporter.hx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,12 @@ import checkstyle.Message.MessageLocation;
44
import haxe.Json;
55

66
class JSONReporter extends BaseReporter {
7-
var files:Array<String> = [];
7+
var files:Array<String>;
8+
9+
public function new(fileCount:Int, checkCount:Int, usedCheckCount:Int, path:String, ns:Bool) {
10+
super(fileCount, checkCount, usedCheckCount, path, ns);
11+
files = [];
12+
}
813

914
override public function start() {
1015
super.start();
@@ -82,4 +87,4 @@ typedef FileReport = {
8287
var messages:Array<ReportMessage>;
8388
};
8489

85-
typedef GlobalReport = Array<FileReport>;
90+
typedef GlobalReport = Array<FileReport>;

0 commit comments

Comments
 (0)