Laurent Deketelaere
Laurent Deketelaere
same here, with `"customize-cra": "1.0.0"` and `tap({ dest: 'customize-cra.log' }),` I got ``` fs.js:160 throw new ERR_INVALID_CALLBACK(cb); ^ TypeError [ERR_INVALID_CALLBACK]: Callback must be a function. Received undefined at maybeCallback (fs.js:160:9)...
as a workaround : `tap({ message: 'Pre - Customizers' })` + `yarn build > customize-cra.log`
I have no device with Jelly Bean for tested, but with Froyo, Gingerbread and KitKat I have problem. have you still the problem?
Hello, `PrivateConstructorException` path was changed between 1.0.0-alpha.7 and 1.0.0-alpha.8 I guess that you are compiling hexCore 1.0.0-alpha.8 with hexcommand 1.0.0-alpha.7 error refactoring on hexCore: https://github.com/DoclerLabs/hexCore/commit/be577bd3c34de6ca8b66696e2ed67f34c51513e0 Fix on hexCommand: https://github.com/DoclerLabs/hexCommand/commit/6371d4801e8496036bada3c95df31c1e0631b832
Because of a lack of resources we do not plan any further development.
Should be documented ! ```haxe var controller = new OneController(); _injector.mapToValue( IOneController, controller ); _injector.mapToValue( IOne2Controller, controller ); _addStatefulConfigs( [statefulConfig] ); _injector.injectInto( controller ); ```
Not in my case, because I need to inject controller in view defined statefulConfig
@Denperidge Maybe you know a better link ?
Working correctly on haxe 3.4.2
Maybe `Reflect::field(Boot::getClass(Test::class), "TEST")` do not work with php `const` : With nightly and `inline` ```php const TEST = "hehe"; ``` Without `inline` ```php static public $TEST = "hehe"; ``` And...