Skip to content

Commit

Permalink
Start migrating to individual modules
Browse files Browse the repository at this point in the history
  • Loading branch information
daffl committed May 3, 2016
1 parent 8330a93 commit 7420dbc
Show file tree
Hide file tree
Showing 261 changed files with 343 additions and 51,657 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ docco
test/builders/steal-tools/dist/
test/builders/steal-tools/bundle/dist/
test/builders/browserify/out.js
_backup/
21 changes: 21 additions & 0 deletions build.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
var stealTools = require("steal-tools");

stealTools.export({
system: {
config: __dirname + "/package.json!npm"
},
outputs: {
"+amd": {},
"+global-js": {
ignore: function(name, load){
return false;
}
}
}
}).catch(function(e){

setTimeout(function(){
throw e;
},1);

});
7 changes: 3 additions & 4 deletions can.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
var can = require('can/util/util');
require('can/map/define/define');
require('can/view/stache/stache');
var can = require('./util/can');

require('can/component/component');
require('can/route/route');

module.exports = can;
Loading

0 comments on commit 7420dbc

Please sign in to comment.