akre54 / Backbone.NativeView

A reference implementation of a native Backbone.View
MIT License
113 stars 18 forks source link

How to "Backbone.NativeView + Browserify" #8

Closed AlexAkhremenko closed 10 years ago

AlexAkhremenko commented 10 years ago

How can I use Backbone.NativeView and Browserify (particularly, gulp-browserify)?

AlexAkhremenko commented 10 years ago

I try to use Backbone.NativeView wit Exoskeleton. In backbone.nativeview.js at line 11:

  } else if (typeof exports === 'object') { factory(require('backbone'));

Then browserify tried to require backbone. I haven't module 'backbone', but have 'exoskeleton'.

akre54 commented 10 years ago

Try aliasify or the alias option if you're using grunt. Remember to export Underscore yourself and set browserify to ignore jquery. Report back here and let us know how it worked for future people.