pikiclaw 0.3.89 → 0.3.90
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/bin/pikiclaw.js +4 -4
- package/package.json +2 -2
package/bin/pikiclaw.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
// pikiclaw has been renamed to
|
|
2
|
+
// pikiclaw has been renamed to pikiloom. Forward all invocations transparently
|
|
3
3
|
// so existing `npx pikiclaw@latest` entry points keep working and pick up the
|
|
4
|
-
// config auto-migration (~/.pikiclaw → ~/.
|
|
4
|
+
// config auto-migration (~/.pikiclaw → ~/.pikiloom) baked into pikiloom.
|
|
5
5
|
const { spawnSync } = require('node:child_process');
|
|
6
|
-
process.stderr.write('\x1b[33m[pikiclaw] renamed to
|
|
7
|
-
const r = spawnSync('npx', ['-y', '
|
|
6
|
+
process.stderr.write('\x1b[33m[pikiclaw] renamed to pikiloom — forwarding to `npx pikiloom@latest`. Please switch to: npx pikiloom@latest\x1b[0m\n');
|
|
7
|
+
const r = spawnSync('npx', ['-y', 'pikiloom@latest', ...process.argv.slice(2)], { stdio: 'inherit' });
|
|
8
8
|
process.exit(r.status == null ? 1 : r.status);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pikiclaw",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "Renamed to
|
|
3
|
+
"version": "0.3.90",
|
|
4
|
+
"description": "Renamed to pikiloom. This shim forwards to `pikiloom`.",
|
|
5
5
|
"bin": { "pikiclaw": "bin/pikiclaw.js" },
|
|
6
6
|
"files": ["bin/"],
|
|
7
7
|
"license": "MIT"
|