@jvittechs/jai1-cli 1.0.8 → 1.0.10

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/cli.js CHANGED
@@ -66,7 +66,7 @@ var NetworkError = class extends Jai1Error {
66
66
  // package.json
67
67
  var package_default = {
68
68
  name: "@jvittechs/jai1-cli",
69
- version: "1.0.8",
69
+ version: "1.0.10",
70
70
  description: "A unified CLI tool for JV-IT TECHS developers to manage Jai1 Framework. Please contact TeamAI for usage instructions.",
71
71
  type: "module",
72
72
  bin: {
@@ -78,7 +78,8 @@ var package_default = {
78
78
  files: [
79
79
  "dist",
80
80
  "redmine.config.example.yaml",
81
- "scripts/redmine-sync-issue.sh"
81
+ "scripts/redmine-sync-issue.sh",
82
+ "scripts/postinstall.js"
82
83
  ],
83
84
  engines: {
84
85
  node: ">=20"
@@ -1745,10 +1746,10 @@ var UnifiedApplyApp = ({
1745
1746
  const visibleComponents = filteredComponents.slice(0, 12);
1746
1747
  const hasMore = filteredComponents.length > 12;
1747
1748
  const selectedPackage = packageOptions[selectedPackageIndex];
1748
- return /* @__PURE__ */ React3.createElement(Box2, { flexDirection: "column", padding: 1 }, /* @__PURE__ */ React3.createElement(Box2, { marginBottom: 1 }, /* @__PURE__ */ React3.createElement(Text3, { bold: true, color: "cyan" }, "\u{1F4E6} Jai1 Apply"), selectedPaths.size > 0 && /* @__PURE__ */ React3.createElement(Text3, { color: "green" }, " [", selectedPaths.size, " selected]")), /* @__PURE__ */ React3.createElement(Box2, { marginBottom: 1, flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Box2, null, /* @__PURE__ */ React3.createElement(Text3, { dimColor: true }, "\u{1F4C1} "), packageOptions.map((pkg, i) => {
1749
+ return /* @__PURE__ */ React3.createElement(Box2, { flexDirection: "column", padding: 1 }, /* @__PURE__ */ React3.createElement(Box2, { marginBottom: 1 }, /* @__PURE__ */ React3.createElement(Text3, { bold: true, color: "cyan" }, "\u{1F4E6} Jai1 Apply"), selectedPaths.size > 0 && /* @__PURE__ */ React3.createElement(Text3, { color: "green" }, " [", selectedPaths.size, " selected]")), /* @__PURE__ */ React3.createElement(Box2, { marginBottom: 1, flexDirection: "column" }, /* @__PURE__ */ React3.createElement(Box2, { flexWrap: "wrap" }, /* @__PURE__ */ React3.createElement(Text3, { dimColor: true }, "\u{1F4C1} "), packageOptions.map((pkg, i) => {
1749
1750
  const isActive = i === selectedPackageIndex;
1750
1751
  const isFocused = focusArea === "packages" && isActive;
1751
- return /* @__PURE__ */ React3.createElement(Box2, { key: pkg.tag, marginRight: 1 }, /* @__PURE__ */ React3.createElement(
1752
+ return /* @__PURE__ */ React3.createElement(Box2, { key: pkg.tag, marginRight: 1, flexShrink: 0 }, /* @__PURE__ */ React3.createElement(
1752
1753
  Text3,
1753
1754
  {
1754
1755
  backgroundColor: isFocused ? "cyan" : isActive ? "gray" : void 0,