Skip to content

Commit b6e921c

Browse files
committed
stubbed file
1 parent 4b1edb4 commit b6e921c

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

core/lib/starterkit_manager.js

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
"use strict";
2+
3+
var starterkit_manager = function (pl) {
4+
var path = require('path'),
5+
fs = require('fs-extra'),
6+
JSON5 = require('json5'),
7+
_ = require('lodash'),
8+
paths = pl.config.paths;
9+
10+
function loadStarterKit(starterkitName) {
11+
12+
}
13+
14+
function listStarterkits() {
15+
16+
}
17+
18+
function packStarterkit() {
19+
20+
}
21+
22+
return {
23+
load_starterkit: function (starterkitName) {
24+
loadStarterKit(starterkitName);
25+
},
26+
list_starterkits: function () {
27+
listStarterkits();
28+
},
29+
pack_starterkit: function () {
30+
packStarterkit();
31+
}
32+
};
33+
34+
};
35+
36+
module.exports = starterkit_manager;

0 commit comments

Comments
 (0)