Skip to content
This repository has been archived by the owner on Oct 11, 2018. It is now read-only.

Commit

Permalink
update gruntfile and rebuild.
Browse files Browse the repository at this point in the history
  • Loading branch information
mikermcneil committed Feb 3, 2014
1 parent a0d6889 commit 92c161a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Expand Up @@ -20,7 +20,7 @@ module.exports = function(grunt) {
standalone: 'Mast',
debug: true
},
src: './lib/src/index.js',
src: './lib/index.js',
dest: './dist/mast.dev.js'
},

Expand All @@ -29,7 +29,7 @@ module.exports = function(grunt) {
standalone: 'Mast',
debug: false
},
src: './lib/src/index.js',
src: './lib/index.js',
dest: './dist/mast.min.js'
},

Expand All @@ -39,7 +39,7 @@ module.exports = function(grunt) {
keepalive: true,
debug: true
},
src: './lib/src/index.js',
src: './lib/index.js',
dest: './.tmp.mast.build.js'
}
}
Expand Down
2 changes: 1 addition & 1 deletion dist/mast.dev.js

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions example/index.html
Expand Up @@ -118,9 +118,9 @@ <h5 bind-text="@name">Default dog name</h5>
To allow the framework to finish loading, call Framework.resume( [cb] ).
(roughly equivalent to http://api.jquery.com/jQuery.holdReady/)
-->
<script src='../lib/deps/jquery.js'></script>
<script src='../lib/deps/lodash.js'></script>
<script src='../lib/deps/backbone.js'></script>
<script src='./deps/jquery.js'></script>
<script src='./deps/lodash.js'></script>
<script src='./deps/backbone.js'></script>
<script src='../dist/mast.dev.js'></script>
<!-- /dependencies -->

Expand Down

0 comments on commit 92c161a

Please sign in to comment.