We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
--use
--settings
1 parent 4b4f5ce commit 14a6d12Copy full SHA for 14a6d12
lib/parse-argv.js
@@ -192,7 +192,7 @@ export function parseArgv(flags, options) {
192
/** @type {Record<string, unknown>} */
193
const settings = {}
194
index = -1
195
- if (++index < setting.length) {
+ while (++index < setting.length) {
196
parseConfig(setting[index], settings)
197
}
198
@@ -212,7 +212,7 @@ export function parseArgv(flags, options) {
212
/** @type {PluggableMap} */
213
const plugins = {}
214
215
- if (++index < use.length) {
+ while (++index < use.length) {
216
217
const options = {}
218
const [key, value] = splitOptions(use[index])
0 commit comments