forked from canjs/canjs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Start migrating to individual modules
- Loading branch information
Showing
261 changed files
with
343 additions
and
51,657 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
|
||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
Oops, something went wrong.