hypha-cli 0.1.5 → 0.1.6
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/postinstall.mjs +5 -4
- package/package.json +1 -1
package/bin/postinstall.mjs
CHANGED
|
@@ -12,10 +12,11 @@ console.log(`
|
|
|
12
12
|
npx hypha-cli --help Show all commands
|
|
13
13
|
|
|
14
14
|
💡 Why 'npx hypha-cli' instead of 'hypha'?
|
|
15
|
-
The Python hypha server package also provides 'hypha' and
|
|
16
|
-
commands. Using 'npx hypha-cli' avoids conflicts
|
|
15
|
+
The legacy Python hypha server package also provides 'hypha' and
|
|
16
|
+
'hypha-cli' commands. Using 'npx hypha-cli' avoids conflicts.
|
|
17
17
|
|
|
18
|
-
🐍 To use 'hypha' directly, upgrade the Python
|
|
18
|
+
🐍 To use the 'hypha' command directly, upgrade the Python package:
|
|
19
19
|
pip install -U hypha
|
|
20
|
-
This will make
|
|
20
|
+
This will make 'hypha' point to the Hypha CLI for interacting
|
|
21
|
+
with the Hypha server.
|
|
21
22
|
`);
|