Skip to content
This repository has been archived by the owner on Jun 26, 2022. It is now read-only.

Commit

Permalink
New make target -- noutils.
Browse files Browse the repository at this point in the history
  • Loading branch information
paulmillr committed Oct 23, 2013
1 parent 6199aab commit 7690599
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
exoskeleton:
cat lib/{header,utils,dom-utils,events,model,collection,view,sync,router,history,footer}.js > exoskeleton.js

noutils:
cat lib/{header,events,model,collection,view,sync,router,history,footer}.js > exoskeleton.js
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,23 @@

Faster and leaner Backbone.js drop-in replacement.

http://exosjs.com

## What already works
All features you need for real-world app are working.
All software tests are passing: (libs = underscore and jquery)

* Backbone: **with and without** libs
* [Chaplin](http://chaplinjs.org): **with and without** libs

## Building

make # Will create exoskeleton.js
make noutils # If you want to use Underscore and jQuery
# and don't want to include `Exoskeleton.utils`.
# Custom, like this:
cat lib/{header,events,collection,sync,history,footer}.js > exoskeleton.js

## Current features

* Custom build (you can `cat` stuff now)
Expand All @@ -19,6 +29,9 @@ All software tests are passing: (libs = underscore and jquery)
* All params are allowed for model attributes, for example `model.get('constructor')` [(jashkenas/backbone#1495)](https://github.com/jashkenas/backbone/issues/1495)
* Support for Bower and Component(1)
* AMD support
* Declaratively defined view events which point to
non-existing handler functions are no longer tolerated / skipped.
Early error is thrown instead.

## Differences

Expand Down

0 comments on commit 7690599

Please sign in to comment.