@metasession.co/devaudit-cli 0.1.56 → 0.1.58

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 CHANGED
@@ -56,7 +56,7 @@ function emitJsonResult(payload) {
56
56
 
57
57
  // package.json
58
58
  var package_default = {
59
- version: "0.1.56"};
59
+ version: "0.1.58"};
60
60
 
61
61
  // src/lib/version.ts
62
62
  var CLI_VERSION = package_default.version;
@@ -2899,7 +2899,7 @@ async function main(argv) {
2899
2899
  });
2900
2900
  program.command("update [version] [paths...]").description(
2901
2901
  "Sync framework templates into existing consumer(s). Both args are optional: paths default to the current directory, and version is a cosmetic label (defaults to the running CLI version). So a bare `devaudit update` syncs the current project."
2902
- ).action(async (version, paths2, cmd) => {
2902
+ ).action(async (version, paths2, _options, cmd) => {
2903
2903
  let resolvedVersion = version;
2904
2904
  let resolvedPaths = paths2 ?? [];
2905
2905
  const looksLikeVersion = (s) => /^v?\d+(\.\d+)/.test(s);