-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcli.ts
More file actions
358 lines (326 loc) · 9.79 KB
/
cli.ts
File metadata and controls
358 lines (326 loc) · 9.79 KB
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
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
#!/usr/bin/env node
import fs from "fs";
import clear from "clear";
import path from "path";
import chalk from "chalk";
import program from "commander";
import { AtomsServer } from "./";
import inquirer from "inquirer";
import execa from "execa";
import Listr, { ListrTask } from "listr";
import { default as generate, Templates } from "./util/generate-file";
import generateAtom from "./util/generate-atom";
// eslint-disable-next-line @typescript-eslint/no-var-requires
const figlet = require("figlet");
// eslint-disable-next-line @typescript-eslint/no-var-requires
import { sampleConfigs } from "@utilitycss/utility";
import { BuildHelperFunction } from "@utilitycss/utility/dist/types";
clear();
console.log(
chalk.red(
figlet.textSync("atomic cli", {
horizontalLayout: "default",
verticalLayout: "default",
width: 100,
whitespaceBreak: true,
})
)
);
// This atomic server, as well as the ICSS module resolution extensively use
// node module resolution to access local workspace packages.
// As this library will live inside the project node_modules, it will not be
// able to resolve workspace dependencies correctly.
// To achieve that NODE_PATH can be extended with the current CWD node_modules
process.env.NODE_PATH = `${
process.env.NODE_PATH ? process.env.NODE_PATH + ":" : ""
}${path.join(process.cwd(), "node_modules")}`;
// eslint-disable-next-line @typescript-eslint/no-var-requires
require("module").Module._initPaths();
const loadConfig = (prog: any, configRelPath: string) => {
const configPath = path.join(process.cwd(), configRelPath);
const hasConfig = fs.existsSync(configPath);
prog.cfg = hasConfig ? require(configPath) : {};
};
// Search for config on root folder with default name
loadConfig(program, "atomic.config.js");
program.version("0.0.1").description("@utilitycss/atomic CLI");
program.option("-c, --config [path]", "Use custom config file.");
program.on("option:config", () => {
// Override with custom config
loadConfig(program, (program as any).config);
});
program.command("build").action(() => {
const {
electronsModuleName,
packageScope,
utilityConfigPath,
bundleCSSPath,
bundleCSSName,
additionalPlugins,
} = (program as any).cfg;
new AtomsServer({
electronsModuleName,
packageScope,
utilityConfigPath,
bundleCSSPath,
bundleCSSName,
additionalPlugins,
})
.initialize()
.then(async (server) => {
await server.build();
});
});
program
.command("start")
.option("-n, --no-rebuild")
.action((cmd) => {
const {
electronsModuleName,
packageScope,
utilityConfigPath,
bundleCSSPath,
bundleCSSName,
additionalPlugins,
} = (program as any).cfg;
new AtomsServer({
electronsModuleName,
packageScope,
utilityConfigPath,
bundleCSSPath,
bundleCSSName,
additionalPlugins,
})
.initialize()
.then(async (server) => {
cmd.rebuild && (await server.build());
await server.run();
});
});
program.command("visit <visitor>").action((v) => {
const {
electronsModuleName,
packageScope,
utilityConfigPath,
bundleCSSPath,
bundleCSSName,
additionalPlugins,
} = (program as any).cfg;
// eslint-disable-next-line @typescript-eslint/no-var-requires
const visitor = require(path.join(process.cwd(), v));
new AtomsServer({
electronsModuleName,
packageScope,
utilityConfigPath,
bundleCSSPath,
bundleCSSName,
additionalPlugins,
})
.initialize()
.then(async (server) => {
await server.visit(new visitor());
});
});
program.command("generate-electron-config").action((cmd) => {
const { electronsModuleName } = (program as any).cfg;
/**
* Resolve for electrons package
*
* Assuming, there is a `config` folder in the root of electrons folder
* */
const electronConfigPath = path.join(
path.parse(require.resolve(`${electronsModuleName}`)).dir,
"../",
"config"
);
inquirer
.prompt([
{
type: "list",
name: "module",
message: "What electron config you want to create?",
choices: Object.keys(sampleConfigs),
},
])
.then(async (answers) => {
const builderFn = (sampleConfigs as {
[key: string]: BuildHelperFunction;
})[answers.module];
if (typeof builderFn === "function") {
const listrTasks: ListrTask[] = [];
const saveFilePath = path.join(
electronConfigPath,
`${answers.module}.js`
);
listrTasks.push({
title: `Creating ${answers.module} config => ${saveFilePath}`,
task: async () => {
await fs.promises.writeFile(saveFilePath, builderFn());
},
});
const tasks = new Listr(listrTasks, {
exitOnError: true,
});
await tasks.run();
} else {
throw new Error(`Config builder for ${answers.module} is not found.`);
}
});
});
program.command("init").action((cmd) => {
inquirer
.prompt([
{
name: "packageScope",
message: "What is your npm scope (e.g. @my-org)?",
default: "@my-org",
},
{
name: "electronsFolder",
message: "Folder name for electrons",
default: "electrons",
},
{
name: "electronsModuleName",
message: "Package name for electrons",
default: (inq: any) => `${inq.packageScope}/${inq.electronsFolder}`,
},
{
name: "atomsFolder",
message: "Folder name for atoms",
default: "atoms",
},
{
name: "bundleCSSPath",
message: "Relative path for the CSS bundle",
default: (inq: any) => `packages/${inq.atomsFolder}/all/`,
},
{
name: "bundleCSSName",
message: "Name of the global bundle",
default: "atom",
},
])
.then(async (answers) => {
const data = {
...answers,
utilityConfigPath: `packages/${answers.atomsFolder}/utility.config.js`,
};
try {
const listrTasks: ListrTask[] = [];
listrTasks.push({
title: "Generating project structure",
task: async () => {
await Promise.all([
// Root folder
generate(Templates.PACKAGE_JSON, data, "package.json"),
generate(Templates.LERNA_JSON, data, "lerna.json"),
generate(Templates.YARNRC, data, ".yarnrc"),
generate(Templates.ATOMIC_CONFIG_JS, data, "atomic.config.js"),
// Electrons package
generate(
Templates.ELECTRONS_PACKAGE_JSON,
data,
path.join("packages", data.electronsFolder, "package.json")
),
generate(
Templates.ELECTRONS_INDEX_CSS,
data,
path.join("packages", data.electronsFolder, "index.css")
),
generate(
Templates.ELECTRONS_PREFLIGHT_CSS,
data,
path.join("packages", data.electronsFolder, "preflight.css")
),
generate(
Templates.ELECTRONS_POSTCSS_PLUGINS_JS,
data,
path.join(
"packages",
data.electronsFolder,
"postcss.plugins.js"
)
),
generate(
Templates.ELECTRONS_UTILITY_CONFIG_JS,
data,
path.join("packages", data.electronsFolder, "utility.config.js")
),
generate(
Templates.ELECTRONS_CONFIG_INDEX_JS,
data,
path.join(
"packages",
data.electronsFolder,
"config",
"index.js"
)
),
generate(
Templates.ELECTRONS_CONFIG_BREAKPOINTS_JS,
data,
path.join(
"packages",
data.electronsFolder,
"config",
"breakpoints.js"
)
),
generate(
Templates.ELECTRONS_CONFIG_BASE_JS,
data,
path.join("packages", data.electronsFolder, "config", "base.js")
),
// Sample electrons
generate(
Templates.ELECTRONS_CONFIG_COLORS_JS,
data,
path.join(
"packages",
data.electronsFolder,
"config",
"colors.js"
)
),
generate(
Templates.ELECTRONS_CONFIG_FONT_JS,
data,
path.join("packages", data.electronsFolder, "config", "font.js")
),
// Atoms packages
generate(
Templates.ATOMS_UTILITY_CONFIG_JS,
data,
path.resolve(data.utilityConfigPath)
),
// Sample atoms
generateAtom("colors", { data, proxy: true }),
generateAtom("typography", { data }),
generate(
Templates.ATOM_TYPOGRAPHY_INDEX_CSS,
data,
path.join(
"packages",
data.atomsFolder,
"typography",
"index.css"
)
),
]);
},
});
listrTasks.push({
title: "Installing dependencies",
task: () => execa("yarn"),
});
const tasks = new Listr(listrTasks, {
exitOnError: true,
});
await tasks.run();
} catch (e) {
console.error(chalk.red("[ERROR]", e));
}
});
});
program.parse(process.argv);