-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
291 lines (260 loc) · 7.22 KB
/
gulpfile.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
27
28
29
30
31
32
33
34
35
36
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
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
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
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
var gulp = require("gulp");
var ts = require("gulp-typescript");
var glob = require('glob');
var fs = require('fs');
var path = require('path');
var del = require('del');
const { basename } = require("path");
var merge = require('merge2'); // Requires separate installation
const child_process = require('child_process');
// gulp.task("default", function() {
// return tsProject
// .src()
// .pipe(tsProject())
// .js.pipe(gulp.dest("dist"));
// });
gulp.task("build:modules", async function() {
// glob.sync(__dirname+'/modules/*').forEach( async function(filePath) {
// console.log(filePath)
// const moduleName = (basename(filePath))
// let project = ts.createProject(`${filePath}/tsconfig.json`);
// return project
// .src()
// .pipe(project())
// .js.pipe(gulp.dest(`dist/${moduleName}`));
// });
let modules = [
{
path: '/Volumes/D/www/js/kookjs/kook_server/modules/cache',
name: 'cache'
}
]
// glob.sync(__dirname+'/modules/*').forEach( async function(filePath) {
// // console.log(filePath)
// modules.push({
// path: filePath,
// name: basename(filePath)
// })
// });
const distDirecotry = __dirname+'/dist';
for (const module of modules) {
// console.log(module)
console.log(`Building module ${module.name}`)
const distModulePath = distDirecotry + '/' + module.name
if (fs.existsSync(distModulePath) && fs.statSync(distModulePath).isDirectory()) {
// console.log(distModulePath)
await del(distModulePath);
}
let project = ts.createProject(`${module.path}/tsconfig.json`);
console.log(project.config)
await new Promise((resolve, reject) => {
var tsResult = project
.src()
.pipe(project())
// .js.pipe(gulp.dest(distModulePath))
// // .pipe(print((filePath) => `File: ${filePath}`))
// .on("end", resolve);
merge([
tsResult.dts.pipe(gulp.dest(distModulePath)),
tsResult.js.pipe(gulp.dest(distModulePath)),
tsResult.on("end", resolve)
])
});
await new Promise((resolve, reject) => {
gulp.src([
`${module.path}/**/*`, //Include All files
`!${module.path}/**/*.ts`, //It will exclude typescript files
`!${module.path}/node_modules/**`
])
.pipe(gulp.dest(distModulePath))
.on("end", resolve);
});
}
// return Promise.resolve('the value is ignored');
});
/**
* Create a complete project build in ./dist directory
* After that you can run the project using command
* node -r ./tsconfig-paths-bootstrap.js ./dist/quickstart/index.js
*/
async function build() {
await del(['./dist/**'])
var tsProject = ts.createProject("tsconfig.json", {
declaration: true
});
// const compiled = tsProject
// .src()
// .pipe(tsProject())
// .js.pipe(gulp.dest("dist"));
await new Promise((resolve, reject) => {
var tsResult = tsProject
.src()
.pipe(tsProject())
merge([
tsResult.dts.pipe(gulp.dest('./dist')),
tsResult.js.pipe(gulp.dest('./dist')),
tsResult.on("end", resolve)
])
});
await new Promise((resolve, reject) => {
gulp.src([
'quickstart/**/*',
'!quickstart/**/*.ts',
])
.pipe(gulp.dest('./dist/quickstart'))
.on("end", resolve);
});
await new Promise((resolve, reject) => {
gulp.src([
'packages/**/*',
'!packages/**/*.ts',
])
.pipe(gulp.dest('./dist/packages'))
.on("end", resolve);
});
await new Promise((resolve, reject) => {
gulp.src([
'modules/**/*',
'!modules/**/*.ts',
])
.pipe(gulp.dest('./dist/modules'))
.on("end", resolve);
});
}
gulp.task("build", build);
/**
* Remove node_modules and dist directory from all the packages
*/
gulp.task("clean:packages", async () => {
for (const package of getPackages()) {
const nmPath = package.path+'/node_modules';
const distPath = package.path+'/dist';
await del([nmPath, distPath])
}
});
/**
* It will print the yarn link .. command e.g.
* yarn link @khanakiajs/cache @khanakiajs/cache-rdbms @khanakiajs/dot-object @khanakiajs/hook @khanakiajs/util
*/
gulp.task("link:module:command", linkModuleCommand);
async function linkModuleCommand() {
let command = 'yarn link';
for (const module of getModules()) {
try {
const pkgJsonPath = module.path+'/package.json'
let rawdata = fs.readFileSync(pkgJsonPath);
let pkg = JSON.parse(rawdata);
command += ' ' + pkg.name
} catch (error) {
}
}
console.log(command)
}
gulp.task("link:package:command", linkPackageCommand);
async function linkPackageCommand() {
let command = 'yarn link';
for (const module of getPackages()) {
try {
const pkgJsonPath = module.path+'/package.json'
let rawdata = fs.readFileSync(pkgJsonPath);
let pkg = JSON.parse(rawdata);
command += ' ' + pkg.name
} catch (error) {
}
}
console.log(command)
}
gulp.task("link:modules", linkModules);
async function linkModules() {
for (const package of getModules()) {
const out = await execShellCommand('yarn link', {
cwd: package.path
})
console.log(out)
}
}
gulp.task("unlink:modules", unLinkModules);
async function unLinkModules() {
for (const package of getModules()) {
const out = await execShellCommand('yarn unlink', {
cwd: package.path
})
console.log(out)
}
}
// NODE_ENV=production gulp link:packages
gulp.task("link:packages", linkPackages);
async function linkPackages() {
for (const package of getPackages()) {
console.log(`Linking Package: ${package.name}`)
const out = await execShellCommand('yarn link', {
cwd: package.path
})
console.log(out)
}
}
gulp.task("unlink:packages", unLinkPackages);
async function unLinkPackages() {
for (const package of getPackages()) {
const out = await execShellCommand('yarn unlink', {
cwd: package.path
})
console.log(out)
}
}
/**
* Executes a shell command and return it as a Promise.
* @param cmd {string}
* @return {Promise<string>}
*/
function execShellCommand(cmd, options) {
const exec = require('child_process').exec;
return new Promise((resolve, reject) => {
exec(cmd, options, (error, stdout, stderr) => {
if (error) {
console.warn(error);
}
if (stderr) {
console.warn(stderr);
}
resolve(stdout? stdout : stderr);
});
});
}
async function deleteDirectory(path) {
if (fs.existsSync(path) && fs.statSync(path).isDirectory()) {
console.log(path)
await del(path);
}
}
function getPackages() {
let dir = __dirname+'/packages/*'
if(isProd()) {
dir = __dirname+'/dist/packages/*'
}
let list = []
glob.sync(dir).forEach( async function(filePath) {
list.push({
path: filePath,
name: basename(filePath)
})
});
return list
}
function getModules() {
let dir = __dirname+'/modules/*'
if(isProd()) {
dir = __dirname+'/dist/modules/*'
}
let list = []
glob.sync(dir).forEach( async function(filePath) {
list.push({
path: filePath,
name: basename(filePath)
})
});
return list
}
function isProd() {
return process.env.NODE_ENV=='production'
}