Philippe Elsass
Philippe Elsass
Hello, did you try on mobile? Can it help making on-screen controls?
https://github.com/cherow/cherow Should support import().
When targeting the browser (e.g. not node and not webpack), Modular will inject a `require` stub. This stub should not override a `require` function in scope. Issue appeared in https://github.com/HaxeFoundation/hxnodejs/issues/121...
Currently Modular detects the entry class by looking for `SomeClass.main()` which is expected to be the last expression of the generated body - this isn't generated when building without main...
Currently if the main bundle is updated the page will not auto-reload and the app may disfunction if a reloaded module depends on the main module to be up to...
I've been asked about splitting some dependencies that change rarely, like OpenFL for instance. This is a good idea in principle - such JS could be cached agressively so users...
Hello, are you accepting PRs for this project?
- launch in simulator - archive - package
Is it possible to ignore some sub-directories? When working on a Titanium project, the build script copies the JS files into some /build/... sub-directory and this older copy hides working...
"Unintuitively", Haxe cases are absolutely strict, so this can bite: ``` switch (x) { case 1: case 2: trace('1 or 2'); // nope, never fall through } ``` And the...