@xapps-platform/cli 0.1.2 → 0.2.0

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/README.md CHANGED
@@ -63,7 +63,9 @@ npm install -D @xapps-platform/cli
63
63
  Note:
64
64
 
65
65
  - This package is now in first public release-candidate shape for the supported non-breaking publish subset.
66
- - First public release is cut as `@xapps-platform/cli@0.1.1` for that supported subset.
66
+ - Current published patch line is `@xapps-platform/cli@0.1.3` for that supported subset.
67
+ - The next additive refresh planned from current source is `@xapps-platform/cli@0.2.0`
68
+ together with the current bootstrap/linking SDK wave.
67
69
  - This README documents only that supported external contract; it does not claim the whole CLI surface is public/stable.
68
70
 
69
71
  ## Commands (baseline)
package/dist/cli.cjs CHANGED
@@ -4790,7 +4790,7 @@ async function runCli(argv) {
4790
4790
  }
4791
4791
  }
4792
4792
  function shouldAutoRunCliEntrypoint(filePath) {
4793
- return /(?:^|[\\/])(?:xapps|cli(?:\.(?:cjs|mjs|js))?)$/.test(String(filePath || ""));
4793
+ return /(?:^|[\\/])(?:xapps|cli(?:\.(?:cts|mts|ts|cjs|mjs|js))?)$/.test(String(filePath || ""));
4794
4794
  }
4795
4795
  if (shouldAutoRunCliEntrypoint(String(process.argv[1] || ""))) {
4796
4796
  runCli(process.argv.slice(2)).catch((err) => {