ninekit-cli 1.1.0-dev.4 → 1.1.0-dev.5

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/cli-manifest.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
- "version": "1.1.0-dev.4",
3
- "generatedAt": "2026-06-19T08:34:33.486Z",
2
+ "version": "1.1.0-dev.5",
3
+ "generatedAt": "2026-06-19T08:38:55.367Z",
4
4
  "commands": {
5
5
  "agents": {
6
6
  "name": "agents",
package/dist/index.js CHANGED
@@ -64714,7 +64714,7 @@ var package_default;
64714
64714
  var init_package = __esm(() => {
64715
64715
  package_default = {
64716
64716
  name: "ninekit-cli",
64717
- version: "1.1.0-dev.4",
64717
+ version: "1.1.0-dev.5",
64718
64718
  description: "CLI tool for bootstrapping and updating NineKit projects",
64719
64719
  type: "module",
64720
64720
  repository: {
@@ -103171,8 +103171,8 @@ async function applyPrefix(extractDir) {
103171
103171
  return;
103172
103172
  }
103173
103173
  if (entries.length === 1 && entries[0] === "nk") {
103174
- const ckDir2 = join117(commandsDir, "nk");
103175
- const ckStat = await stat20(ckDir2);
103174
+ const nkDir2 = join117(commandsDir, "nk");
103175
+ const ckStat = await stat20(nkDir2);
103176
103176
  if (ckStat.isDirectory()) {
103177
103177
  logger.verbose("Commands already have /nk: prefix, skipping");
103178
103178
  return;
@@ -103181,8 +103181,8 @@ async function applyPrefix(extractDir) {
103181
103181
  await import_fs_extra21.copy(commandsDir, backupDir);
103182
103182
  logger.verbose("Created backup of commands directory");
103183
103183
  await mkdir31(tempDir, { recursive: true });
103184
- const ckDir = join117(tempDir, "nk");
103185
- await mkdir31(ckDir, { recursive: true });
103184
+ const nkDir = join117(tempDir, "nk");
103185
+ await mkdir31(nkDir, { recursive: true });
103186
103186
  let processedCount = 0;
103187
103187
  for (const entry of entries) {
103188
103188
  const sourcePath = join117(commandsDir, entry);
@@ -103191,7 +103191,7 @@ async function applyPrefix(extractDir) {
103191
103191
  logger.warning(`Skipping symlink for security: ${entry}`);
103192
103192
  continue;
103193
103193
  }
103194
- const destPath = join117(ckDir, entry);
103194
+ const destPath = join117(nkDir, entry);
103195
103195
  await import_fs_extra21.copy(sourcePath, destPath, {
103196
103196
  overwrite: false,
103197
103197
  errorOnExist: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ninekit-cli",
3
- "version": "1.1.0-dev.4",
3
+ "version": "1.1.0-dev.5",
4
4
  "description": "CLI tool for bootstrapping and updating NineKit projects",
5
5
  "type": "module",
6
6
  "repository": {