-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
31 lines (30 loc) · 1.15 KB
/
index.js
File metadata and controls
31 lines (30 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
var transformTools = require("browserify-transform-tools");
var path = require("path");
module.exports = transformTools.makeRequireTransform(
"browserify-aws-sdk",
{
evaluateArguments: true,
regex: /[\/\\]aws-sdk[\/\\]lib[\/\\]aws\.js$/
},
function (args, opts, cb) {
switch (args[0]) {
case "./api_loader":
return cb(null, "{ load: function(svc, version) { return AWS.apiLoader.services[svc][version]; } }");
case "./services":
var services = opts.config.services;
if (services instanceof Array) {
services = services.join(",");
}
if (services === undefined) {
services = "all";
}
var inject = "AWS.apiLoader.services = {};\n";
if (services) {
var collector = require(path.resolve(path.dirname(opts.file), "../dist-tools/service-collector"));
inject += collector(services);
}
return cb(null, inject);
}
return cb();
}
);