Philippe Elsass

Results 36 issues of 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...

bug

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...

bug
enhancement

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...

enhancement
question

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...

help wanted
question

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...

type:feature
prio:low
status:design-decision-needed
status:openkomodo-related

"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...