Ecosyste.ms: Awesome
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: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/davibe/brunch-npm-bug
- Owner: davibe
- Created: 2015-05-17T06:05:07.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-05-17T06:08:00.000Z (over 9 years ago)
- Last Synced: 2024-10-13T17:56:13.030Z (3 months ago)
- Language: CoffeeScript
- Size: 97.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Do this:
npm install .
brunch buildThe 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) {
...