You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, we load the contents of defaults: if it is passed as an option.
Then, we'll load any --config filename or config:'filename' contents, assuming the path is valid.
Then, we'll parse an array argv: if passed in options. This array get's parsed just as if it were process.argv. This means it's parsed using the identifier array in 1.0. note: you can either parse a custom array, or process.argv, but not both as specifying an argv: value will cause uniformer to ignore process.argv.
The text was updated successfully, but these errors were encountered:
here's how uniformer v1 will load things:
defaults:
if it is passed as an option.--config filename
orconfig:'filename'
contents, assuming the path is valid.argv:
if passed in options. This array get's parsed just as if it wereprocess.argv
. This means it's parsed using the identifier array in 1.0. note: you can either parse a custom array, orprocess.argv
, but not both as specifying anargv:
value will cause uniformer to ignoreprocess.argv
.The text was updated successfully, but these errors were encountered: