An open API service indexing awesome lists of open source software.

https://github.com/davibe/brunch-npm-bug


https://github.com/davibe/brunch-npm-bug

Last synced: 4 months ago
JSON representation

Awesome Lists containing this project

README

        

Do this:

npm install .
brunch build

The result public/app.js should have export definition for both 'jquery' and
'trifl' instead it only has that for 'jquery'.

Looks like brunch can't properly handle trifl.

i.e. there is

...
require.register('jquery', function (exp, req, mod) {
...

but instead of

...
require.register('trifl', function (exp, req, mod) {
...

there is something like

...
require.register('individual', function (exp, req, mod) {
...