Skip to content

Commit 2251a9c

Browse files
committed
chore: cleanups
1 parent 02a8ba1 commit 2251a9c

File tree

6 files changed

+23
-12
lines changed

6 files changed

+23
-12
lines changed

src/config.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
11
import path from "path"
22
import {
33
AsyncResolver,
4+
ConfigLoadConfig,
45
FileResponse,
56
FileResponseHandler,
7+
LogConfig,
68
LogLevel,
79
Resolver,
810
ScaffoldCmdConfig,
@@ -99,9 +101,7 @@ function wrapNoopResolver<T, R = T>(value: Resolver<T, R>): Resolver<T, R> {
99101
}
100102

101103
/** @internal */
102-
export async function getConfig(
103-
config: Pick<ScaffoldCmdConfig, "quiet" | "verbose" | "config">,
104-
): Promise<ScaffoldConfigFile> {
104+
export async function getConfig(config: ConfigLoadConfig): Promise<ScaffoldConfigFile> {
105105
const { config: configFile, ...logConfig } = config as Required<typeof config>
106106
const url = new URL(configFile)
107107

@@ -127,7 +127,7 @@ export async function getConfig(
127127

128128
async function getGitConfig(
129129
url: URL,
130-
logConfig: Pick<ScaffoldCmdConfig, "verbose" | "quiet">,
130+
logConfig: LogConfig,
131131
): Promise<AsyncResolver<ScaffoldCmdConfig, ScaffoldConfigMap>> {
132132
const repoUrl = `${url.protocol}//${url.host}${url.pathname}`
133133

src/logger.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
1-
import { LogLevel, ScaffoldConfig } from "./types"
1+
import { LogConfig, LogLevel, ScaffoldConfig } from "./types"
22
import chalk from "chalk"
33

4-
/** @internal */
5-
export type LogConfig = Pick<ScaffoldConfig, "quiet" | "verbose">
6-
74
export function log(config: LogConfig, level: LogLevel, ...obj: any[]): void {
85
if (config.quiet || config.verbose === LogLevel.None || level < (config.verbose ?? LogLevel.Info)) {
96
return

src/scaffold.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
copyFileTransformed,
1818
getTemplateFileInfo,
1919
} from "./file"
20-
import { LogLevel, Resolver, ScaffoldCmdConfig, ScaffoldConfig } from "./types"
20+
import { LogLevel, MinimalConfig, Resolver, ScaffoldCmdConfig, ScaffoldConfig } from "./types"
2121
import { OptionsBase } from "massarg/types"
2222
import { pascalCase, registerHelpers } from "./parser"
2323
import { log, logInitStep, logInputFile } from "./logger"
@@ -112,8 +112,11 @@ export async function Scaffold(config: ScaffoldConfig): Promise<void> {
112112
* @return {Promise<void>} A promise that resolves when the scaffold is complete
113113
*/
114114
Scaffold.fromConfig = async function (
115+
/** The path or URL to the config file */
115116
pathOrUrl: string,
116-
config: Pick<ScaffoldCmdConfig, "name" | "key">,
117+
/** Information needed before loading the config */
118+
config: MinimalConfig,
119+
/** Any overrides to the loaded config */
117120
overrides?: Resolver<ScaffoldCmdConfig, Partial<Omit<ScaffoldConfig, "name">>>,
118121
): Promise<void> {
119122
const _cmdConfig: ScaffoldCmdConfig & OptionsBase = {

src/types.ts

+10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { HelperDelegate } from "handlebars/runtime"
2+
import { LogConfig } from "./logger"
23

34
/**
45
* The config object for defining a scaffolding group.
@@ -371,3 +372,12 @@ export type Resolver<T, R = T> = R | ((value: T) => R)
371372

372373
/** @internal */
373374
export type AsyncResolver<T, R = T> = Resolver<T, Promise<R> | R>
375+
376+
/** @internal */
377+
export type LogConfig = Pick<ScaffoldConfig, "quiet" | "verbose">
378+
379+
/** @internal */
380+
export type ConfigLoadConfig = LogConfig & Pick<ScaffoldCmdConfig, "config">
381+
382+
/** @internal */
383+
export type MinimalConfig = Pick<ScaffoldCmdConfig, "name" | "key">

tests/scaffold.test.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import FileSystem from "mock-fs/lib/filesystem"
33
import Scaffold from "../src/scaffold"
44
import { readdirSync, readFileSync } from "fs"
55
import { Console } from "console"
6-
import { defaultHelpers } from "../src/utils"
6+
import { defaultHelpers } from "../src/parser"
77
import { join } from "path"
88
import * as dateFns from "date-fns"
99
import crypto from "crypto"

tests/utils.test.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
import { dateHelper, handlebarsParse, nowHelper, parseAppendData } from "../src/utils"
21
import { ScaffoldCmdConfig, ScaffoldConfig } from "../src/types"
32
import path from "path"
43
import * as dateFns from "date-fns"
54
import { OptionsBase } from "massarg/types"
5+
import { dateHelper, handlebarsParse, nowHelper } from "../src/parser"
6+
import { parseAppendData } from "../src/config"
67

78
const blankConf: ScaffoldConfig = {
89
verbose: 0,

0 commit comments

Comments
 (0)