@meltstudio/config-loader 1.0.1 → 1.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -436,7 +436,7 @@ var Settings = class {
|
|
|
436
436
|
constructor(schema, sources) {
|
|
437
437
|
this.schema = schema;
|
|
438
438
|
this.sources = sources;
|
|
439
|
-
this.program = new import_commander.Command();
|
|
439
|
+
this.program = new import_commander.Command().allowUnknownOption(true).allowExcessArguments(true);
|
|
440
440
|
this.load();
|
|
441
441
|
}
|
|
442
442
|
validateFiles() {
|
package/package.json
CHANGED