Bower packages are loaded after app code, not before
Closed this issue · 5 comments
I would have expected bower packages to be loaded before my app code so the could reference it. For example:
bitcore = require('bitcore') # Bower package foo = ()-> bitcore.foo()
However it appears that the bower packages are loaded at the very end after almost all of the app code (although before main.) Thus bower packages cannot be used as above and referencing them is problematic. Would it be possible to move the bower load order to be ahead of all app code? Thanks!
Hi Juan, it's working for me:
Hey Loren, thanks for looking at it! I tweaked your test case to demonstrate the problem. Put test.coffee in a directory and it fails with a console error saying require not defined:
If you look at the script tags in the head you will see that the bower packages are loaded after test.coffee.
Okay, thanks – didn't know what you meant by main. Would accept a PR for this.
We're using this function:
https://github.com/mquandalle/meteor-bower/blob/master/plugin/handler.js#L216
Looks like can't control load order?
https://github.com/meteor/meteor/wiki/CompileStep-API-for-Build-Plugin-Source-Handlers
I just found the part in the readme that say that load order is controlled by placement of the bower.json file. So I moved my bower.json into /lib, and that advances it sufficiently for my purposes. I am closing this report now. Thanks!