|
|
|
|
|
by vmind
4226 days ago
|
|
If it's just a snippet, and require.js made up 20% of the filesize, then why not just have a single file, or assume a single closure and concatenate a few files together? You'll gain even better filesize from minifying inside a single closure. The formalised step up from this is SMASH, which is how d3 is built: https://github.com/mbostock/smash |
|
It's a little ambiguous when using something like Smash, since you're not actually importing a module onto a variable.
For example, check out this random file from D3 source: https://github.com/mbostock/d3/blob/master/src/interpolate/i...
As someone unfamiliar with the codebase, it's unclear to me where many of the variables are coming from (d3_interpolate, d3_rgb_names, d3_interpolateRgb, etc).
It'd imagine it makes managing dependencies a bit trickier.