Mato Ilic
Mato Ilic
Thank you all for bringing in ideas on how to improve and extend the generator :). @ITsvetkoFF 1. I usually create an "api" component where shared services live. This is...
Putting the application component is not supported currently. I'm thinking about to extract the application component into an own generator to enable such a structure as suggested by @MarijnMensinga. As...
Thank you such much for the proposals. I'll be on vacation the next weeks and start implementing the new features after that.
No it's not. I'm working on an update to replace SystemJS and JSPM with Webpack 2 and to add the missing / requested features. Since I'm doing everything in my...
I can't find any issues. It works properly for the example project here https://github.com/matoilic/angular-lazy-workshop. 3rd-party libraries will only be packaged if they are referenced somewhere. Is that maybe your issue?
If you remove one of the packages from the config, e.g. angular-translate you'll see that an additional bundle will be generated under build/bundles/angular-translate.js.
This is something the included bundler does by default if you import your templates instead of using the templateUrl parameter, see this as an example https://github.com/matoilic/angular-lazy-workshop/blob/master/src/components/git-hub-file-browser/git-hub-file-browser-directive.js#L1. Thus, gulp-angular-embed-templates in the...
I ran into the same issue when trying to build a lib which can make use of import maps in the browser. @shellscape Any chance on getting this into a...
eslint-plugin-import also has a rule which could help to hint developers about importing transitive dependencies. - https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md
@gaearon Sure, I can work out a PR. What do you think about importing dev dependencies? Should there be a warning / error when importing a dev dependency, especially in...