zodern
zodern
This probably is caused by TLA being disabled by default on the client.
This issue still exists. Meteor filters out npm dev dependencies when building the app, but not when building Meteor packages (which are then included in the app bundle).
I haven't been able to reproduce it so far. I see the error, but then it always reloads the page since it currently isn't able to add the new files...
@jasongrishkoff was `/imports/client/messages/about.jsx` already dynamically imported by the app, or only used by modules that were dynamically imported? There were some scenarios I overlooked that could cause this error when...
I am able to reproduce. > It's gotten to the point where updating a scss file at /functions/scss/file.scss forces me to wait ~30 seconds to update, then refreshes the page....
@jasongrishkoff sorry, I forgot it hadn't been updated for Meteor 2.3. It should work now.
We haven't fixed the issue of a dynamically imported module becoming a statically imported module.
The `fetch` called in the dynamic-import package is actually a pseudo-global exported from the `fetch` package: https://github.com/meteor/meteor/blob/745e55dea9e5584acfb3a4f44d19ab404cd8c214/packages/fetch/package.js#L24 In legacy browsers, this is a polyfill, and in modern browsers it is...