@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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@meltstudio/config-loader",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Melt Studio's tool for loading configurations into a Node.js application.",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",