hackmud-script-manager 0.21.2-8993a56 → 0.21.2
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/hsm.js +2 -2
- package/package.json +1 -1
package/bin/hsm.js
CHANGED
@@ -63,7 +63,7 @@ if (process.version.startsWith("v21.")) {
|
|
63
63
|
)
|
64
64
|
}
|
65
65
|
if ("v" == commands[0] || "version" == commands[0] || popOption("version", "v")?.value) {
|
66
|
-
console.log("0.21.2
|
66
|
+
console.log("0.21.2")
|
67
67
|
process.exit()
|
68
68
|
}
|
69
69
|
let warnedDeprecatedEmitDtsAlias = !1
|
@@ -411,7 +411,7 @@ function logHelp() {
|
|
411
411
|
default:
|
412
412
|
console.log(
|
413
413
|
colourS(
|
414
|
-
`${colourJ("Hackmud Script Manager")}\n${colourN("Version") + colourS(": ") + colourV("0.21.2
|
414
|
+
`${colourJ("Hackmud Script Manager")}\n${colourN("Version") + colourS(": ") + colourV("0.21.2")}\n\n${colourA("Commands:")}\n${colourL("push")}\n ${pushCommandDescription}\n${colourL("minify")}\n Minify a script file on the spot\n${colourL("emit-dts")}\n Generate a type declaration file for a directory of scripts\n${colourL("sync-macros")}\n Sync macros across all hackmud users\n${colourL("pull")}\n Pull a script a from a hackmud user's script directory\n\n${colourA("Options:")}\n${colourN("--help")}\n Can be used on any command e.g. ${colourC("hsm")} ${colourL("push")} ${colourN("--help")} to show helpful information`
|
415
415
|
)
|
416
416
|
)
|
417
417
|
}
|
package/package.json
CHANGED