Robbie Wagner
                                            Robbie Wagner
                                        
                                    @AhamedFrontEndDeveloper so you are doing this just to make the initial load smaller? We could do a dynamic import in this addon instead, if that is the goal.
@AhamedFrontEndDeveloper we should be able to add a dynamic import right to the component. We should not need a wrapper.
@AhamedFrontEndDeveloper no, it will load when the component loads, not when the component is interacted with.
@AhamedFrontEndDeveloper I would put the import right before `this.flatpickrRef =`. You can wrap that in the dynamic import and then set the `flatpickrRef`.
@AhamedFrontEndDeveloper I really don't think this library is large enough to need to dynamic import, but if we are going to make the switch, I would do it across the...
We're also looking for ways to reduce our build size, and moment-timezone is currently almost double the size of Ember itself in our bundle! Would love some suggestions on how...
@jasonmit that looks like it should work for locales. We currently have `includeTimezone: 'all'` as well though, so I assume we have to manually load timezone data? We don't actually...
@aexmachina apologies, I will try to add some detail for you. `common-styles` is just in the root of the app, just like `bower_components`. According to the docs, I would assume...
@aexmachina no, we are on `ember-cli-sass` 5.6.0, so: ``` "name": "node-sass", "version": "3.13.0", "libsass": "3.3.6", ``` Is it supposed to work with any directories I throw at it? I assumed...
So I installed the local directory with npm and with it in node_modules, I can add it to includePaths. However, `@import 'common-styles';` only works in `addon.scss` and not `app.scss`.