https://github.com/davibe/brunch-npm-bug
https://github.com/davibe/brunch-npm-bug
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/davibe/brunch-npm-bug
- Owner: davibe
- Created: 2015-05-17T06:05:07.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-05-17T06:08:00.000Z (about 10 years ago)
- Last Synced: 2025-01-25T13:11:17.637Z (6 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) {
...