zodern
zodern
Could you please try again with version 5.2.0? SWC had a large number of bug fixes in the minifier which probably fixed this.
I've seen this issue too. The build on disk seems correct, but the running app returns a 404 for the new js file.
That's interesting. Currently it uses the same settings for both the legacy and modern clients. We probably could adjust how it minifies the modern client to enable more optimizations.
Does cordova actually use the source maps? We could have Webapp serve an empty source map instead.
If cordova does, we can create a source map that is valid but doesn't do anything, but it will be slower. > But I would certainly love it if I...
It seems to be supported now: ``` new WOW({ scrollContainer: '.scroll' }).init(); ```
Meteor is able to remove dev dependencies when copying a node_modules folder: https://github.com/meteor/meteor/blob/devel/tools/isobuild/bundler.js#L2457-L2479, though it hasn't been implemented for packages. Depending on how it is implemented for packages and if...
Thanks for opening this discussion @HemalR. I wasn't sure how to handle this, so went with what seemed the safer option. From the api perspective, the obvious solution is to...
I'm planning to work on an update to the package soon, including adding a solution for this issue. My current plan is to add an option for methods and publications,...
One of the design goals of zodern:relay was to make it as difficult as possible to accidentally include server code in the client. This is achieved by zodern:relay removing all...