amir toole
amir toole
@rernens this is extremely late, but you don't actually have to store all static files (i.e. fonts) in an assets folder. `.angular-cli.json` is quite versatile and supports adding assets from...
Can you try installing rimraf globally? `npm install -g rimraf` I'm not sure the clean script can work without rimraf being globally available.
This looks like a generic issue when including third party dependencies for electron app. In project.config.ts ``` let additionalPackages: ExtendPackages[] = [{ name: 'angular2-fontawesome', path: 'node_modules/angular2-fontawesome/bundles/angular2-fontawesome.umd.min.js' }]; ``` Works as...
After digging deeper (https://github.com/NathanWalker/angular-seed-advanced/blob/master/tools/config/seed-advanced.config.ts#L148) we need to copy the following into project.config.ts: ``` this.DESKTOP_PACKAGES = [ ...this.DESKTOP_PACKAGES, ...additionalPackages, ]; ``` This is a bit clunky. I'll see if I can...
For enums we do something similar, but we use the string representation instead: Let's assume we have enum: ``` public enum Animals { Dog, Cat } ``` ``` @JsProperty(name =...
I'll answer my own question in case anyone else comes across this: Need to wrap this in a specific task. Super Dev example: gwtSuperDev { args '-XjsInteropMode' args 'JS_RC' }