Skip to content

Commit 4fecca8

Browse files
committed
fix: support quote wrapping in append-data
1 parent 222e1a0 commit 4fecca8

File tree

4 files changed

+15
-3
lines changed

4 files changed

+15
-3
lines changed

src/cmd.ts

+5-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,18 @@ import { LogLevel, ScaffoldCmdConfig } from "./types"
55
import { Scaffold } from "./scaffold"
66
import path from "path"
77
import fs from "fs/promises"
8-
import { OptionsBase } from "massarg/types"
98
import { parseAppendData } from "./utils"
109

1110
export async function parseCliArgs(args = process.argv.slice(2)) {
1211
const pkg = JSON.parse((await fs.readFile(path.join(__dirname, "package.json"))).toString())
1312

1413
return (
1514
massarg<ScaffoldCmdConfig>()
16-
.main(Scaffold)
15+
.main((config) => {
16+
config.data = { ...config.data, ...config.appendData }
17+
delete config.appendData
18+
return Scaffold(config)
19+
})
1720
.option({
1821
name: "name",
1922
aliases: ["n"],

src/types.ts

+1
Original file line numberDiff line numberDiff line change
@@ -331,6 +331,7 @@ export interface ScaffoldCmdConfig {
331331
output: string
332332
createSubFolder: boolean
333333
data?: Record<string, string>
334+
appendData?: Record<string, string>
334335
overwrite: boolean
335336
quiet: boolean
336337
verbose: LogLevel

src/utils.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -389,5 +389,9 @@ export function parseAppendData(value: string, options: ScaffoldCmdConfig & Opti
389389
if (value.includes(":=") && !val.includes(":=")) {
390390
return { ...data, [key]: JSON.parse(val) }
391391
}
392-
return { ...data, [key]: val }
392+
return { ...data, [key]: isWrappedWithQuotes(val) ? val.substring(1, val.length - 1) : val }
393+
}
394+
395+
function isWrappedWithQuotes(string: string): boolean {
396+
return (string.startsWith('"') && string.endsWith('"')) || (string.startsWith("'") && string.endsWith("'"))
393397
}

tests/utils.test.ts

+4
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,9 @@ describe("Utils", () => {
116116
test("overwrites existing value", () => {
117117
expect(parseAppendData("name:=123", blankCliConf)).toEqual({ name: 123 })
118118
})
119+
120+
test("works with quotes", () => {
121+
expect(parseAppendData('key="value test"', blankCliConf)).toEqual({ key: "value test", name: "test" })
122+
})
119123
})
120124
})

0 commit comments

Comments
 (0)