-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
26 lines (23 loc) · 1.03 KB
/
index.js
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
var createBuilder = require('./lib/builder.js');
var retrievers = require("./lib/pluginRetrievers.js")
var reqMod = require("./lib/reqMod.js");
//-------------------------------------------------------------------------------------------------
// factory export
//-------------------------------------------------------------------------------------------------
module.exports.createBuilder = createBuilder;
//-------------------------------------------------------------------------------------------------
// default retrievers
// these are exported as a new object
// because of how require works.
// I don't want users being able to change the meaning of "plugin" or "value"
// for all builders ever, just for the one they are building right now
//-------------------------------------------------------------------------------------------------
module.exports.retrierves = {
"plugin": retrievers.plugin,
"value": retrievers.value,
"req": retrievers.req,
"package": retrievers.package
};
module.exports.utilities = {
"reqMod": reqMod
}