We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b1edb4 commit b6e921cCopy full SHA for b6e921c
core/lib/starterkit_manager.js
@@ -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