Roman Mikhailov
Roman Mikhailov
`Content of make/EnabledTestModule.hx`: ```haxe package; import hxmake.cli.MakeLog; import hxmake.Task; class EnabledTestModule extends hxmake.Module { public function new() { task("task1", Task.empty().doLast(function(_):Void { MakeLog.warning("task1"); })); task("task1").enabled = false; } } ``` Run...
There is need for create a test plugin which create test tasks on configuration step based on provided module configurations. something like: ```haxe ... testConfiguration(function(config:TestConfigurationExt) { config.targets = [Target.Flash, Target.Js,...
I met compilation error (```error CS1061: Type `haxe.IMap' does not contain a definition for `keys' and no extension method `keys' of type `haxe.IMap' could be found. Are you missing an...