Skip to content

Commit c398976

Browse files
committed
feat: load scaffold config from files
1 parent b3f7912 commit c398976

File tree

4 files changed

+49
-7
lines changed

4 files changed

+49
-7
lines changed
+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/** @type {Record<string, require('simple-scaffold').ScaffoldConfig>} */
2+
module.exports = {
3+
default: {
4+
templates: ["examples/test-input/Component"],
5+
output: "examples/test-output",
6+
data: { property: "myProp", value: "10" },
7+
},
8+
component: {
9+
templates: ["examples/test-input/Component"],
10+
output: "examples/test-output",
11+
data: { property: "myProp", value: "10" },
12+
},
13+
}

src/cmd.ts

+13-7
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
#!/usr/bin/env node
22
import massarg from "massarg"
33
import chalk from "chalk"
4-
import { LogLevel, ScaffoldCmdConfig } from "./types"
4+
import { LogLevel, ScaffoldCmdConfig, ScaffoldConfig } from "./types"
55
import { Scaffold } from "./scaffold"
66
import path from "path"
77
import fs from "fs/promises"
8-
import { parseAppendData } from "./utils"
8+
import { parseAppendData, parseConfig } from "./utils"
9+
import { OptionsBase } from "massarg/types"
910

1011
export async function parseCliArgs(args = process.argv.slice(2)) {
1112
const pkg = JSON.parse((await fs.readFile(path.join(__dirname, "package.json"))).toString())
13+
const isConfig = args.includes("--config") || args.includes("-c")
1214

1315
return (
1416
massarg<ScaffoldCmdConfig>()
1517
.main((config) => {
16-
config.data = { ...config.data, ...config.appendData }
17-
delete config.appendData
18-
return Scaffold(config)
18+
const _config = parseConfig(config)
19+
return Scaffold(_config)
1920
})
2021
.option({
2122
name: "name",
@@ -25,11 +26,16 @@ export async function parseCliArgs(args = process.argv.slice(2)) {
2526
isDefault: true,
2627
required: true,
2728
})
29+
.option({
30+
name: "config",
31+
aliases: ["c"],
32+
description: "Load config file instead of passing arguments.",
33+
})
2834
.option({
2935
name: "output",
3036
aliases: ["o"],
3137
description: `Path to output to. If --create-sub-folder is enabled, the subfolder will be created inside this path. ${chalk.reset`${chalk.white`(default: current dir)`}`}`,
32-
required: true,
38+
required: !isConfig,
3339
})
3440
.option({
3541
name: "templates",
@@ -38,7 +44,7 @@ export async function parseCliArgs(args = process.argv.slice(2)) {
3844
description:
3945
"Template files to use as input. You may provide multiple files, each of which can be a relative or absolute path, " +
4046
"or a glob pattern for multiple file matching easily.",
41-
required: true,
47+
required: !isConfig,
4248
})
4349
.option({
4450
name: "overwrite",

src/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -336,4 +336,5 @@ export interface ScaffoldCmdConfig {
336336
quiet: boolean
337337
verbose: LogLevel
338338
dryRun: boolean
339+
config: string
339340
}

src/utils.ts

+22
Original file line numberDiff line numberDiff line change
@@ -395,3 +395,25 @@ export function parseAppendData(value: string, options: ScaffoldCmdConfig & Opti
395395
function isWrappedWithQuotes(string: string): boolean {
396396
return (string.startsWith('"') && string.endsWith('"')) || (string.startsWith("'") && string.endsWith("'"))
397397
}
398+
399+
/** @internal */
400+
export function parseConfig(config: ScaffoldCmdConfig & OptionsBase): ScaffoldConfig {
401+
let c: ScaffoldConfig = config
402+
403+
if (config.config) {
404+
const [configFile, template = "default"] = config.config.split(":")
405+
const configImport: Record<string, ScaffoldConfig> = require(path.resolve(process.cwd(), configFile))
406+
c = {
407+
...config,
408+
...configImport[template],
409+
data: {
410+
...configImport[template].data,
411+
...config.data,
412+
},
413+
}
414+
}
415+
416+
c.data = { ...c.data, ...config.appendData }
417+
delete config.appendData
418+
return c
419+
}

0 commit comments

Comments
 (0)