djaonourside

Results 12 comments of djaonourside

@elsassph No, it's a browser app. Firstly libs.js and index.js are loaded with index.html. Then lib2.js is loaded in runtime. And finally a js file that contains require(''some-lib-from-libs2'') is loaded....

I see. Is it planned to implement such feature? Sometimes one libs file is too heavy. For example I load an auth page and don't want to load all my...

`var require = (function(r){ return function require(m) { return r[m]; } })($s.__registry__ || {});` the variable `require` is inited when index.js runs and `r` variable in the function stays equal...

@elsassph, for example, I make changes in Main.hx file and auto reloading of index.html works only without -debug flag. Is it expected behavior?

Then why livereloadx doesn't reload page after haxe recompile sources with -debug flag **on**?

elsassph, thanks for explanation and your haxe smart version of react-redux:)

What's the current strategy of the haxe in haxe implementation?

the same problem windows 10

Confirm, the fix solves the issue for my project.

@PlopUser you can already use the similar aproach in haxe. Although it's a little bit redundant. ``` new Html({ doctype: "html5", children: [ new Head({ title: "Haxe home page" }),...