cloudcc-cli 1.6.4 → 1.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1176 -1161
- package/bin/cc.js +49 -49
- package/bin/plugin.js +6 -6
- package/bin/project.js +6 -6
- package/core/core/CCObject.java +48 -0
- package/core/core/CCService.java +806 -0
- package/core/core/CCTrigger.java +23 -0
- package/core/core/CCTriggerHandler.java +15 -0
- package/core/core/DevLogger.java +39 -0
- package/core/core/OperatationEnum.java +5 -0
- package/core/core/PeakInterf.java +6 -0
- package/core/core/PeakSvc.java +8 -0
- package/core/core/ServiceResult.java +35 -0
- package/core/core/TriggerInvoker.java +83 -0
- package/core/core/TriggerMethod.java +9 -0
- package/core/core/TriggerTimeEnum.java +5 -0
- package/core/core/UserInfo.java +45 -0
- package/core.zip +0 -0
- package/package.json +34 -34
- package/src/classes/create.js +40 -43
- package/src/classes/index.js +8 -8
- package/src/classes/publish.js +43 -47
- package/src/config/get.js +20 -22
- package/src/config/index.js +8 -8
- package/src/config/use.js +14 -16
- package/src/object/get.js +14 -16
- package/src/object/index.js +7 -7
- package/src/plugin/create.js +70 -80
- package/src/plugin/create1.js +58 -66
- package/src/plugin/index.js +8 -8
- package/src/plugin/publish.js +265 -298
- package/src/plugin/publish1.js +256 -286
- package/src/project/create.js +87 -89
- package/src/project/create1.js +109 -111
- package/src/project/index.js +7 -7
- package/src/recordType/get.js +13 -16
- package/src/recordType/index.js +7 -7
- package/src/script/create.js +29 -32
- package/src/script/index.js +8 -8
- package/src/script/publish.js +62 -69
- package/src/timer/create.js +26 -29
- package/src/timer/index.js +8 -8
- package/src/timer/publish.js +43 -47
- package/src/token/get.js +11 -13
- package/src/token/index.js +7 -7
- package/src/triggers/create.js +27 -35
- package/src/triggers/index.js +8 -8
- package/src/triggers/publish.js +48 -51
- package/template/Appvue +29 -29
- package/template/babelconfigjs +5 -5
- package/template/demojava +14 -14
- package/template/gitignore +11 -11
- package/template/index.js +57 -57
- package/template/indexhtml +21 -21
- package/template/indexvue +34 -34
- package/template/javaconfigjson +2 -2
- package/template/mainjs +13 -13
- package/template/package-lockjson +12115 -12115
- package/template/packagejson +42 -42
- package/template/vueconfigjs +26 -26
- package/tool/branch/index.js +25 -0
- package/tool/checkLange/checkLang.js +68 -0
- package/tool/checkLange/clearLang.js +85 -0
- package/tool/checkLange/result.txt +0 -0
- package/utils/checkVersion.js +94 -105
- package/utils/http.js +122 -122
- package/utils/utils.js +57 -59
package/src/plugin/publish.js
CHANGED
|
@@ -1,298 +1,265 @@
|
|
|
1
|
-
const { exec } = require('child_process');
|
|
2
|
-
const { post } = require('../../utils/http');
|
|
3
|
-
const fs = require('fs');
|
|
4
|
-
const path = require("path")
|
|
5
|
-
const chalk = require("chalk")
|
|
6
|
-
const inquirer = require("inquirer")
|
|
7
|
-
|
|
8
|
-
const { checkUpdate } = require("../../utils/checkVersion")
|
|
9
|
-
const BaseUrl = "https://developer.apis.cloudcc.cn"
|
|
10
|
-
const { getPackageJson } = require("../../utils/utils")
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
answers =
|
|
37
|
-
}
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
prompt
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
let
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
`
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
"compContentJs": jsContent,
|
|
267
|
-
"compContentVue": obj.vueContent,
|
|
268
|
-
"vueData": obj.vueData,
|
|
269
|
-
"bizType": obj.bizType,
|
|
270
|
-
"compDesc": obj.compDesc,
|
|
271
|
-
"category": obj.category,
|
|
272
|
-
"loadModel": obj.loadModel || "lazy",
|
|
273
|
-
"belongOrgFlag": this.options.devConsoleConfig.belongOrgFlag || "custom" //belongOrgFlag: 所属单位标识,std:官方的组件(神州云动);custom:第三方的组件
|
|
274
|
-
}
|
|
275
|
-
// 服务名
|
|
276
|
-
let devSvcDispatch = this.options.devConsoleConfig.devSvcDispatch || '/devconsole'
|
|
277
|
-
let res = await post(`${this.options.devConsoleConfig.baseUrl || BaseUrl}${devSvcDispatch}/custom/pc/1.0/post/insertCustomComp`,
|
|
278
|
-
body, header);
|
|
279
|
-
if (res.returnCode == 200) {
|
|
280
|
-
console.error(chalk.green(`发布成功!`));
|
|
281
|
-
console.log();
|
|
282
|
-
} else {
|
|
283
|
-
console.error(chalk.red(`发布失败: ${res.returnInfo}`));
|
|
284
|
-
console.log();
|
|
285
|
-
}
|
|
286
|
-
return res;
|
|
287
|
-
}
|
|
288
|
-
|
|
289
|
-
/**
|
|
290
|
-
* 过滤出min.js文件
|
|
291
|
-
* @returns 过滤结果
|
|
292
|
-
*/
|
|
293
|
-
getVueContent(buildFileName) {
|
|
294
|
-
const jsPath = "plugin";
|
|
295
|
-
return path.join(jsPath, buildFileName);
|
|
296
|
-
}
|
|
297
|
-
}
|
|
298
|
-
module.exports = Builder;
|
|
1
|
+
const { exec } = require('child_process');
|
|
2
|
+
const { post } = require('../../utils/http');
|
|
3
|
+
const fs = require('fs');
|
|
4
|
+
const path = require("path")
|
|
5
|
+
const chalk = require("chalk")
|
|
6
|
+
const inquirer = require("inquirer")
|
|
7
|
+
|
|
8
|
+
const { checkUpdate } = require("../../utils/checkVersion")
|
|
9
|
+
const BaseUrl = "https://developer.apis.cloudcc.cn"
|
|
10
|
+
const { getPackageJson } = require("../../utils/utils")
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class Builder {
|
|
14
|
+
constructor() {
|
|
15
|
+
this.options = {
|
|
16
|
+
|
|
17
|
+
devConsoleConfig: {
|
|
18
|
+
},
|
|
19
|
+
}
|
|
20
|
+
this.plugin = process.argv.splice(2)[0]
|
|
21
|
+
}
|
|
22
|
+
async init() {
|
|
23
|
+
let res = await checkUpdate();
|
|
24
|
+
if (!res) {
|
|
25
|
+
this.options.devConsoleConfig = getPackageJson();
|
|
26
|
+
let config = this.options.devConsoleConfig
|
|
27
|
+
|
|
28
|
+
if ("private" != this.options.devConsoleConfig.version) {
|
|
29
|
+
config = { "accessToken": await this.getToken(config) };
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
let answers;
|
|
33
|
+
if (this.plugin) {
|
|
34
|
+
answers = { buildFileName: this.plugin }
|
|
35
|
+
} else {
|
|
36
|
+
answers = await this.ask();
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
if ("*.vue" == answers.buildFileName) {
|
|
40
|
+
let dirs = fs.readdirSync("plugin")
|
|
41
|
+
for (let i = 0; i < dirs.length; i++) {
|
|
42
|
+
let item = dirs[i]
|
|
43
|
+
let obj = this.getVueValue(item);
|
|
44
|
+
this.initPluginFile(item, obj.component, "plginTemp" + i);
|
|
45
|
+
this.build(obj, config, "plginTemp" + i)
|
|
46
|
+
}
|
|
47
|
+
} else {
|
|
48
|
+
let obj = this.getVueValue(answers.buildFileName);
|
|
49
|
+
this.initPluginFile(answers.buildFileName, obj.component, "plginTemp");
|
|
50
|
+
this.build(obj, config, "plginTemp")
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
ask() {
|
|
56
|
+
const prompt = [];
|
|
57
|
+
prompt.push({
|
|
58
|
+
type: "input",
|
|
59
|
+
name: "buildFileName",
|
|
60
|
+
message: "Please enter the file name to be compiled, such as index.vue",
|
|
61
|
+
})
|
|
62
|
+
return inquirer.prompt(prompt)
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
async getToken(devConsoleConfig) {
|
|
66
|
+
let res = await post(this.options.devConsoleConfig.baseUrl || BaseUrl + "/sysconfig/auth/pc/1.0/post/tokenInfo", devConsoleConfig);
|
|
67
|
+
if (res.returnCode == 200) {
|
|
68
|
+
return res.data.accessToken;
|
|
69
|
+
} else {
|
|
70
|
+
console.error(chalk.red(`Login failed`, JSON.stringify(res)));
|
|
71
|
+
return null;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
getVueValue(buildFileName) {
|
|
77
|
+
let vueContent = fs.readFileSync(this.getVueContent(buildFileName), 'utf8');
|
|
78
|
+
let vueData = vueContent + ""
|
|
79
|
+
|
|
80
|
+
if (!vueContent.includes("scoped")) {
|
|
81
|
+
|
|
82
|
+
console.log()
|
|
83
|
+
console.log(chalk.yellow("Warning: The scoped attribute is missing in style, which may cause global style pollution. It is recommended to fix it。"));
|
|
84
|
+
console.log()
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
vueData = vueData.split("data()")[1].split("isLock:")[0] + "isLock:false,};}";
|
|
91
|
+
vueData = "function data()" + vueData;
|
|
92
|
+
const data = eval(`(${vueData})`)()
|
|
93
|
+
|
|
94
|
+
if (!data.propObj) {
|
|
95
|
+
data.propObj = {};
|
|
96
|
+
data.propOption = {};
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
if (!data.events) {
|
|
100
|
+
data.events = {};
|
|
101
|
+
data.eventsOption = {};
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (!data.style) {
|
|
105
|
+
data.style = {
|
|
106
|
+
unit: "px",
|
|
107
|
+
width: 72,
|
|
108
|
+
height: 38,
|
|
109
|
+
top: 0,
|
|
110
|
+
left: 0,
|
|
111
|
+
rotate: 0,
|
|
112
|
+
opacity: 1,
|
|
113
|
+
};
|
|
114
|
+
data.styleOption = {
|
|
115
|
+
word: {
|
|
116
|
+
lable: "label.help",
|
|
117
|
+
type: "word",
|
|
118
|
+
link: "https://google.com",
|
|
119
|
+
},
|
|
120
|
+
unit: {
|
|
121
|
+
lable: "label.custom.unit",
|
|
122
|
+
type: "option",
|
|
123
|
+
options: [
|
|
124
|
+
{
|
|
125
|
+
value: "px",
|
|
126
|
+
label: "label.custom.pixel",
|
|
127
|
+
},
|
|
128
|
+
{
|
|
129
|
+
value: "%",
|
|
130
|
+
label: "label.percent",
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
value: "hw",
|
|
134
|
+
label: "label.custom.viewport",
|
|
135
|
+
},
|
|
136
|
+
],
|
|
137
|
+
},
|
|
138
|
+
width: {
|
|
139
|
+
lable: "label.custom.width",
|
|
140
|
+
type: "input",
|
|
141
|
+
inputType: "number",
|
|
142
|
+
},
|
|
143
|
+
height: {
|
|
144
|
+
lable: "label.custom.height",
|
|
145
|
+
type: "input",
|
|
146
|
+
inputType: "number",
|
|
147
|
+
},
|
|
148
|
+
top: {
|
|
149
|
+
lable: "label.dev.y.coordinate",
|
|
150
|
+
type: "input",
|
|
151
|
+
inputType: "number",
|
|
152
|
+
},
|
|
153
|
+
left: {
|
|
154
|
+
lable: "label.dev.x.coordinate",
|
|
155
|
+
type: "input",
|
|
156
|
+
inputType: "number",
|
|
157
|
+
},
|
|
158
|
+
};
|
|
159
|
+
}
|
|
160
|
+
let component = data.componentInfo.component
|
|
161
|
+
let compName = data.componentInfo.compName
|
|
162
|
+
vueData = JSON.stringify(data);
|
|
163
|
+
let bizType = data.componentInfo.bizType
|
|
164
|
+
let compDesc = data.componentInfo.compDesc
|
|
165
|
+
let category = data.componentInfo.category
|
|
166
|
+
let loadModel = data.componentInfo.loadModel
|
|
167
|
+
return { compName, component, vueContent, vueData, bizType, compDesc, category, loadModel }
|
|
168
|
+
};
|
|
169
|
+
|
|
170
|
+
initPluginFile(buildFileName, component, plginTemp) {
|
|
171
|
+
this.initPluginFile1(buildFileName, component, plginTemp)
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
initPluginFile1(buildFileName, component, plginTemp) {
|
|
175
|
+
let newContent =
|
|
176
|
+
`
|
|
177
|
+
import Vue from "vue"
|
|
178
|
+
import VueCustomElement from "vue-custom-element"
|
|
179
|
+
Vue.use(VueCustomElement);
|
|
180
|
+
|
|
181
|
+
import index from "./` + buildFileName + `"
|
|
182
|
+
Vue.customElement('`+ component + `', index,{ destroyTimeout: ${this.options.devConsoleConfig.destroyTimeout || 20 * 60 * 1000} });
|
|
183
|
+
`
|
|
184
|
+
|
|
185
|
+
fs.writeFileSync(`plugin/${plginTemp}.js`, newContent);
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
initPluginFile2(buildFileName, component, plginTemp) {
|
|
190
|
+
let newContent =
|
|
191
|
+
`
|
|
192
|
+
import index from "./${buildFileName}"
|
|
193
|
+
function install(Vue) {
|
|
194
|
+
Vue.component('${component}', index);
|
|
195
|
+
}
|
|
196
|
+
export default install;
|
|
197
|
+
if (typeof window !== 'undefined' && window.Vue) {
|
|
198
|
+
window.Vue.use(install);
|
|
199
|
+
if (install.installed) {
|
|
200
|
+
install.installed = false;
|
|
201
|
+
}
|
|
202
|
+
}
|
|
203
|
+
`
|
|
204
|
+
fs.writeFileSync(`plugin/${plginTemp}.js`, newContent);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
build(obj, config, plginTemp) {
|
|
209
|
+
console.log(chalk.green('Compiling, Please Wait...'));
|
|
210
|
+
exec('npx vue-cli-service build --target lib --name ' + obj.component + ` --dest build plugin/${plginTemp}.js`, async (error, stdout, stderr) => {
|
|
211
|
+
if (error) {
|
|
212
|
+
console.log('Compilation Failed:', error);
|
|
213
|
+
console.log(chalk.red('Compilation Failed:' + stdout));
|
|
214
|
+
return;
|
|
215
|
+
} else {
|
|
216
|
+
console.log(chalk.green('Compilation Successful!'));
|
|
217
|
+
console.log();
|
|
218
|
+
await this.upload(obj, config)
|
|
219
|
+
fs.unlinkSync(`plugin/${plginTemp}.js`);
|
|
220
|
+
}
|
|
221
|
+
})
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
async upload(obj, header) {
|
|
225
|
+
console.log(chalk.green('Posting, please wait...'));
|
|
226
|
+
let jsContent = "";
|
|
227
|
+
try {
|
|
228
|
+
jsContent = fs.readFileSync(path.join("build", obj.component + ".umd.min.js"), 'utf8')
|
|
229
|
+
} catch (err) {
|
|
230
|
+
console.error(err)
|
|
231
|
+
return;
|
|
232
|
+
}
|
|
233
|
+
let body = {
|
|
234
|
+
"compLabel": obj.compName,
|
|
235
|
+
"compUniName": obj.component,
|
|
236
|
+
"compContentJs": jsContent,
|
|
237
|
+
"compContentVue": obj.vueContent,
|
|
238
|
+
"vueData": obj.vueData,
|
|
239
|
+
"bizType": obj.bizType,
|
|
240
|
+
"compDesc": obj.compDesc,
|
|
241
|
+
"category": obj.category,
|
|
242
|
+
"loadModel": obj.loadModel || "lazy",
|
|
243
|
+
"belongOrgFlag": this.options.devConsoleConfig.belongOrgFlag || "custom"
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
let devSvcDispatch = this.options.devConsoleConfig.devSvcDispatch || '/devconsole'
|
|
247
|
+
let res = await post(`${this.options.devConsoleConfig.baseUrl || BaseUrl}${devSvcDispatch}/custom/pc/1.0/post/insertCustomComp`,
|
|
248
|
+
body, header);
|
|
249
|
+
if (res.returnCode == 200) {
|
|
250
|
+
console.error(chalk.green(`Success!`));
|
|
251
|
+
console.log();
|
|
252
|
+
} else {
|
|
253
|
+
console.error(chalk.red(`Fail: ${res.returnInfo}`));
|
|
254
|
+
console.log();
|
|
255
|
+
}
|
|
256
|
+
return res;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
|
|
260
|
+
getVueContent(buildFileName) {
|
|
261
|
+
const jsPath = "plugin";
|
|
262
|
+
return path.join(jsPath, buildFileName);
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
module.exports = Builder;
|