1 | ;
|
2 | var stealTools = require("steal-tools");
|
3 |
|
4 | stealTools.export({
|
5 | steal: {
|
6 | config: __dirname + "/package.json!npm"
|
7 | },
|
8 | outputs: {
|
9 | "+cjs": {},
|
10 | "+amd": {},
|
11 | "+global-js": {}
|
12 | }
|
13 | }).catch(function(e){
|
14 |
|
15 | setTimeout(function(){
|
16 | throw e;
|
17 | },1);
|
18 |
|
19 | });
|