-
Notifications
You must be signed in to change notification settings - Fork 3
/
cli.js
179 lines (163 loc) · 3.82 KB
/
cli.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
#!/usr/bin/env node
'use strict';
const meow = require('meow');
const updateNotifier = require('update-notifier');
const gulpfile = require('./gulpfile.js');
const pkg = require('./package.json');
const fs = require('fs');
const path = require('path');
const cli = meow(`
Usage
$ sandpaper
Options
--lint Check code for errors.
--build Optimize code and save to /dev or /dist (if --production is specified.)
--sync Start browser syncronized server, compiles code on change.
--strict Lint codding style in addition to errors.
--fix fixes coding style issues, such as tabs/spaces, indentation, and css property order.
--watch Remain running, re-lint or re-build whenever a file is changed.
--prod Build for production, Don’t include sourcemaps, and minified code.
Examples
$ sandpaper --lint
$ sandpaper --build
$ sandpaper --sync
$ sandpaper --lint --strict --watch
$ sandpaper --lint --strict --fixstyle
$ sandpaper --build --watch
$ sandpaper --build --watch --production
$ sandpaper --lint --build --watch --production
$ sandpaper --lint --build --sync
`, {
flags: {
lint: {
type: 'boolean',
default: false
},
build: {
type: 'boolean',
default: false
},
sync: {
type: 'boolean',
default: false
},
strict: {
type: 'boolean',
default: false
},
fix: {
type: 'boolean',
default: false
},
watch: {
type: 'boolean',
default: false
},
production: {
type: 'boolean',
default: false
}
}
});
updateNotifier({
pkg: {
name: 'sandpaper',
version: pkg.version
}
}).notify();
// CLI logic (input handler)
(async () => {
if (fs.existsSync(path.resolve('./', 'node_modules', 'sandpaper'))) {
await Promise.all([
lint(),
build(),
sync(),
(async () => {
if (cli.input.length > 0) {
console.log('Unrecognized input: ' + cli.input + ' use Sandpaper --help for a list of valid inputs.');
}
})(),
noArgs()
]);
} else {
console.log('\r\n Unable to find \'./node_modules/sandpaper\', \r\n It doesn\'t look like sandpaper has been initialized for this project, have you run npm init sandpaper yet? \r\n');
}
})();
// Functions for interfacing between CLI logic and program logic.
async function lint() {
if (cli.flags.lint === true) {
if (cli.flags.strict === true) {
if (cli.flags.watch === true) {
// Lint Strict True, Watch True
gulpfile.watchLintStrict();
} else {
// Lint Strict True, Watch False
gulpfile.lintStrict();
}
} else if (cli.flags.watch === true) {
// Lint Strict False, Watch True
gulpfile.watchLint();
} else {
// Lint Strict False, Watch False
gulpfile.lint();
}
if (cli.flags.fix) {
if (cli.flags.watch) {
gulpfile.autoFixSrc();
} else {
gulpfile.fixSrc();
}
}
}
}
async function build() {
if (cli.flags.build === true && cli.flags.sync === false) {
if (cli.flags.prod === true) {
if (cli.flags.watch === true) {
// Build Production True, Watch True
gulpfile.watchProd();
} else {
// Build Production True, Watch False
gulpfile.buildProd();
}
} else if (cli.flags.watch === true) {
// Build Production False, Watch True
gulpfile.watchDev();
} else {
// Build Production False, Watch False
gulpfile.buildDev();
}
}
}
async function sync() {
if (cli.flags.sync === true) {
if (cli.flags.prod === true) {
gulpfile.syncProd();
} else {
gulpfile.syncDev();
}
}
}
async function noArgs() {
let anyFlag = false;
let anyArg = false;
// If any cli.flags are set
for (const arg in cli.flags) {
if (cli.flags[arg] === true) {
anyFlag = true;
}
}
// If any cli argumantes are set
if (cli.input.length > 0) {
anyArg = true;
}
if (!anyFlag && !anyArg) {
(async () => {
await Promise.all([
gulpfile.watchLintStrict(),
gulpfile.autoFixSrc(),
gulpfile.syncDev()
]);
})();
}
}