@mono-labs/cli 0.0.118 → 0.0.119

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.
@@ -137,7 +137,7 @@ export function buildCommands(files) {
137
137
  console.log('optionsData:', optionsData);
138
138
  console.log('envDefaults', envDefaults);
139
139
  console.log('cmd', cmd);
140
- const optionVals = { ...(cmd.opts ? cmd.opts() : cmd), ...envDefaults };
140
+ const optionVals = { ...envDefaults, ...(cmd.opts ? cmd.opts() : cmd) };
141
141
  console.log('optionVals before verify:', optionVals);
142
142
  Object.keys(optionVals).forEach((k) => {
143
143
  optionVals[k] = verifyOptionValue(k, optionVals[k], optionsData);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.118",
3
+ "version": "0.0.119",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",