-
Notifications
You must be signed in to change notification settings - Fork 671
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
wrapShim config #623
Comments
This fix is in master now, it can be tried by using this version of r.js, until 2.1.11 is released: |
Seems to me that |
@KidkArolis I am still concerned about the scope changes wrapping introduced, and given that existing behavior did not wrap, I do not want to automatically change people's projects to introduce wrapping. I could see though that after we have had this capability in use for a while, and we see it does not have any issues, then for a 3.0 type of release, it could be switched to true by default. |
Is it possible to wrap shim of one concrete module, not all shimmed modules? |
@gobwas if you want to wrap just one, I suggest manually doing it yourself using the onBuildWrite hook. |
@jrburke thanks a lot! Was trying to do the same thing with onBuildRead yesterday - your tip is much easier =) |
… an AMD module (backbone) See requirejs/r.js#623 for more info Without this we were getting "Uncaught ReferenceError: Backbone is not defined" errors in the plone bundle
Seems that the if I use the shorthand syntax for dependencies, the dependencies do not show up in the build. |
I'm finding these two rules conflict: |
Shim config is always a less desirable option, since the goal of having a module loader is to use modules with well defined, internally specified modules. There is always a limit to the extent of being able to support shims, since they are just inferior to actual modules, this is one of them. |
A built file with shim config can fail if it has an intermediate dependency that is an AMD module but downstream dependencies are not AMD.
Canonical example: Backbone depends on jQuery and Underscore. jQuery and Underscore do not have any dependencies, so they can also export a global value when they run, and only call define() at the end with the global they set up.
However, Backbone needs jQuery and Underscore loaded before its main module body can execute. So it is not executed right away, it is executed once the dependencies have had their define()'d factories called.
But if there is a shim config for something that depends on Backbone, that shimmed dependency wants Backbone available immediately when it executes, and it does not have a define() wrapper.
Before a build, this all works because the shimmed dep is not fetched until Backbone is fully defined. However, in a build, with all the dependencies inlined, there will be a failure.
A way to avoid this is to wrap the shimmed dependency in a define() call -- this avoids executing it until its dependencies are available.
I have traditionally avoided this because by wrapping, it changes the scope for the shimmed dependency. If that dependency is doing a
var A = {}
to define a globalA
, inside a define() wrapping that will not be true. Plus shim is a crutch, an intermediary step to full modularization. But hey, the peoples like to use shim, and some like to even use Backbone.So allow shimmed scripts to be wrapped, and try to mitigate the wrapping effects. For the
var A = {}
case, if the shim config configuresexports: 'A'
, then go ahead and assign that as a global a part of this wrapping.So
wrapShim: true
will enable the wrapping behavior.The text was updated successfully, but these errors were encountered: