@ulpi/cli 0.1.7 → 0.1.8

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.
@@ -13,7 +13,7 @@ var REGISTRY_URL = CLI_REGISTRY_URL;
13
13
  var FETCH_TIMEOUT_MS = 5e3;
14
14
  function getCurrentVersion() {
15
15
  try {
16
- return "0.1.7";
16
+ return "0.1.8";
17
17
  } catch {
18
18
  return "0.0.0";
19
19
  }
@@ -415,7 +415,7 @@ async function initUlpiSubsystems(projectDir) {
415
415
  const { historyBranchExists, initHistoryBranch } = await import("./dist-YCNWHSLN.js");
416
416
  if (!historyBranchExists(projectDir)) {
417
417
  const projectName = path.basename(projectDir);
418
- const version = true ? "0.1.7" : "0.0.0";
418
+ const version = true ? "0.1.8" : "0.0.0";
419
419
  initHistoryBranch(projectDir, projectName, version);
420
420
  console.log(chalk.blue("[ulpi-ci] History branch initialized"));
421
421
  } else {
@@ -164,7 +164,7 @@ function checkHooksInstalled(configPath) {
164
164
  function checkCore(projectDir) {
165
165
  section("Core");
166
166
  try {
167
- const version = "0.1.7";
167
+ const version = "0.1.8";
168
168
  pass(`ULPI CLI version: ${version}`);
169
169
  } catch {
170
170
  pass("ULPI CLI: installed");
@@ -416,7 +416,7 @@ async function initSubcommand(projectDir) {
416
416
  }
417
417
  const projectName = path2.basename(projectDir);
418
418
  try {
419
- initHistoryBranch(projectDir, projectName, "0.1.7");
419
+ initHistoryBranch(projectDir, projectName, "0.1.8");
420
420
  } catch (err) {
421
421
  const message = err instanceof Error ? err.message : String(err);
422
422
  console.log(chalk.red(`Error: ${message}`));
package/dist/index.js CHANGED
@@ -131,7 +131,7 @@ async function handleSessionStart(ctx) {
131
131
  if (shouldPromptForGeneration(projectDir2)) {
132
132
  outputGenerationPrompt();
133
133
  }
134
- import("./version-checker-5L5PUOEX.js").then((m) => m.checkForUpdates()).catch(() => {
134
+ import("./version-checker-AUAHP4P2.js").then((m) => m.checkForUpdates()).catch(() => {
135
135
  });
136
136
  try {
137
137
  const { isMemoryEnabled, loadMemoryConfig, getTopMemories, formatMemoriesForAgent } = await import("./dist-JLU26AB6.js");
@@ -1787,14 +1787,14 @@ async function main() {
1787
1787
  case "uninstall":
1788
1788
  return (await import("./uninstall-BX6FOV77.js")).runUninstall(args.slice(1), projectDir);
1789
1789
  case "start":
1790
- return (await import("./start-IJKY5RVT.js")).runStart(args.slice(1), projectDir);
1790
+ return (await import("./start-SQRNELKC.js")).runStart(args.slice(1), projectDir);
1791
1791
  case "ui":
1792
1792
  console.log(chalk.yellow("'ulpi ui' is deprecated. Use 'ulpi start' instead."));
1793
- return (await import("./start-IJKY5RVT.js")).runStart(args.slice(1), projectDir);
1793
+ return (await import("./start-SQRNELKC.js")).runStart(args.slice(1), projectDir);
1794
1794
  case "update":
1795
- return (await import("./update-AQKTHFVQ.js")).runUpdate(args.slice(1));
1795
+ return (await import("./update-V4LET4UD.js")).runUpdate(args.slice(1));
1796
1796
  case "history":
1797
- return (await import("./history-UMGQNQQ7.js")).runHistory(args.slice(1), projectDir);
1797
+ return (await import("./history-INYAXMBQ.js")).runHistory(args.slice(1), projectDir);
1798
1798
  case "review":
1799
1799
  console.error("The 'review' command has been removed in ULPI v2.");
1800
1800
  process.exit(1);
@@ -1808,7 +1808,7 @@ async function main() {
1808
1808
  case "repos":
1809
1809
  return (await import("./repos-WWZXNN3P.js")).runRepos(args.slice(1));
1810
1810
  case "ci":
1811
- return (await import("./ci-COZRTPGQ.js")).runCi(args.slice(1), projectDir);
1811
+ return (await import("./ci-ZKXPTYOS.js")).runCi(args.slice(1), projectDir);
1812
1812
  case "auth":
1813
1813
  return (await import("./auth-HDK7ECJL.js")).runAuth(args.slice(1));
1814
1814
  case "prd":
@@ -1822,7 +1822,7 @@ async function main() {
1822
1822
  case "portal":
1823
1823
  return (await import("./portal-JYWVHXDU.js")).runPortalCommand(args.slice(1), projectDir);
1824
1824
  case "doctor":
1825
- return (await import("./doctor-FKYSIHER.js")).runDoctorCommand(args.slice(1), projectDir);
1825
+ return (await import("./doctor-OHAU2ZOF.js")).runDoctorCommand(args.slice(1), projectDir);
1826
1826
  case "kiro":
1827
1827
  return (await import("./kiro-VMUHDFGK.js")).runKiro(args.slice(1), projectDir);
1828
1828
  case "codex":
@@ -1842,7 +1842,7 @@ async function main() {
1842
1842
  return (await import("./cloud-2F3NLVHN.js")).runCloud(args.slice(1), projectDir);
1843
1843
  case "--version":
1844
1844
  case "-v":
1845
- console.log("0.1.7");
1845
+ console.log("0.1.8");
1846
1846
  return;
1847
1847
  case "--help":
1848
1848
  case "-h":
@@ -216,7 +216,7 @@ async function runStart(args, projectDir) {
216
216
  historyReady = true;
217
217
  } else {
218
218
  const projectName = path2.basename(projectDir);
219
- await initHistoryBranch(projectDir, projectName, "0.1.7");
219
+ await initHistoryBranch(projectDir, projectName, "0.1.8");
220
220
  historyReady = true;
221
221
  }
222
222
  } catch {
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  checkForUpdates
3
- } from "./chunk-EWLYVXQ4.js";
3
+ } from "./chunk-BV5UYMYQ.js";
4
4
  import {
5
5
  CLI_BIN_NAME,
6
6
  CLI_NPM_PACKAGE
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  checkForUpdates,
3
3
  getCurrentVersion
4
- } from "./chunk-EWLYVXQ4.js";
4
+ } from "./chunk-BV5UYMYQ.js";
5
5
  import "./chunk-C7CLUQI6.js";
6
6
  import "./chunk-4VNS5WPM.js";
7
7
  export {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ulpi/cli",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "ulpi": "./dist/index.js"