-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathdoc-util.js
67 lines (55 loc) · 1.75 KB
/
doc-util.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
// dependency of release.js. from https://github.com/uswds/uswds/blob/develop/config/gulp/doc-util.js
const log = require("fancy-log");
const colors = require("ansi-colors");
const notifier = require("node-notifier");
const pkg = require("./package.json");
const shellPrefix = "$";
function drawFlag() {
log(colors.white(""));
log(colors.white("* * * * * ========================"));
log(colors.white("* * * * * ========================"));
log(colors.white("* * * * * ========================"));
log(colors.white("* * * * * ========================"));
log(colors.white("=================================="));
log(colors.white("=================================="));
log(colors.white("=================================="));
log(colors.white(""));
}
function notify(title, message, wait) {
notifier.notify({
title,
message,
icon: 'src/img/favicons/favicon-192.png',
wait,
timeout: false
});
}
module.exports = {
pkg: {
name: pkg.name,
version: pkg.version
},
dirName: `${pkg.name}-${pkg.version}`,
logIntroduction(message) {
const introMessage = message || "NASAWDS";
log(colors.yellow(`${introMessage} v${pkg.version}`));
drawFlag();
},
logCommand(name, message) {
log(shellPrefix, colors.cyan(name), colors.magenta(message));
},
logHelp(name, message) {
log(shellPrefix, colors.cyan(name), colors.yellow(message));
},
logData(name, message) {
log(colors.cyan(name), colors.yellow(message));
},
logError(name, message) {
log(colors.red(name), colors.yellow(message));
notify(`${this.dirName} gulp ${name}`, message, true);
},
logMessage(name, message) {
log(colors.cyan(name), colors.green(message));
notify(`${this.dirName} gulp ${name}`, message, false);
}
};