Skip to content

Commit ae3b3a4

Browse files
authored
added NodeJS detection to launch node version if available (#475)
* added NodeJS detection to launch node version if available
1 parent 1a2140e commit ae3b3a4

File tree

5 files changed

+257
-237
lines changed

5 files changed

+257
-237
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
- Added thread support for eval target ([#469](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/469))
1111
- Added `allowTrailingComma` to SeparatorWhitespaceCheck and WhitespaceAfterCheck ([#470](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/470))
1212
- Added `FINAL` to ModifierOrder check default ([#472](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/472))
13+
- Added NodeJS detection to launch NodeJS version if available ([#475](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/475))
1314
- Fixed enum abstract detection in MagixNumber check, fixes [#104](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/104) ([#449](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/449))
1415
- Fixed indentation of `)`, fixes [#450](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/450) ([#451](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/451))
1516
- Fixed typedef extension (Haxe 3.x) [#452](https://github.com/HaxeCheckstyle/haxe-checkstyle/issues/452)

buildJS.hxml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,4 @@
1-
-cp src
2-
-lib haxeparser
3-
-lib compiletime:2.6.0
4-
-lib hxargs:3.0.2
5-
-lib tokentree
1+
buildGlobal.hxml
62
-lib hxnodejs
73
-main checkstyle.Main
84
-js haxecheckstyle.js

gruntfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ function zipIt() {
4848
src: [
4949
"src/**",
5050
"resources/sample-config.json", "resources/logo.png", "resources/codeclimate_pr.png",
51-
"haxelib.json", "run.n", "README.md", "CHANGELOG.md", "LICENSE.md"
51+
"haxelib.json", "run.n", "haxecheckstyle.js", "README.md", "CHANGELOG.md", "LICENSE.md"
5252
],
5353
dest: "haxe-checkstyle.zip",
5454
compression: "DEFLATE",

0 commit comments

Comments
 (0)