@mono-labs/cli 0.0.116 → 0.0.118

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.
@@ -97,7 +97,8 @@ export function buildCommands(files) {
97
97
  current.action(async (arg, cmd) => {
98
98
  let envDefaults = {};
99
99
 
100
- console.log(arg);
100
+ console.log('args', arg);
101
+ console.log('cmd', cmd);
101
102
  if (argInfo) {
102
103
  console.log(argInfo);
103
104
  console.log(argInfo.options);
@@ -135,6 +136,7 @@ export function buildCommands(files) {
135
136
  // });
136
137
  console.log('optionsData:', optionsData);
137
138
  console.log('envDefaults', envDefaults);
139
+ console.log('cmd', cmd);
138
140
  const optionVals = { ...(cmd.opts ? cmd.opts() : cmd), ...envDefaults };
139
141
  console.log('optionVals before verify:', optionVals);
140
142
  Object.keys(optionVals).forEach((k) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mono-labs/cli",
3
- "version": "0.0.116",
3
+ "version": "0.0.118",
4
4
  "description": "A CLI tool for building and deploying projects",
5
5
  "type": "module",
6
6
  "main": "index.js",