hackmud-script-manager 0.19.1-8719c7d → 0.19.1-875bbe4
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 +7 -6
- package/env.d.ts +1357 -0
- package/index.d.ts +2 -2
- package/package.json +4 -1
- package/processScript/index.d.ts +4 -3
- package/processScript/index.js +6 -6
- package/processScript/minify.d.ts +3 -3
- package/processScript/preprocess.d.ts +5 -4
- package/processScript/preprocess.js +2 -2
- package/processScript/transform.d.ts +4 -3
- package/processScript/transform.js +38 -37
- package/push.d.ts +5 -5
- package/push.js +83 -214
- package/syncMacros.js +1 -1
- package/typescript.patch +882 -0
- package/watch.d.ts +3 -3
- package/watch.js +8 -8
package/bin/hsm.js
CHANGED
@@ -12,7 +12,7 @@ import { pull } from "../pull.js"
|
|
12
12
|
import { syncMacros } from "../syncMacros.js"
|
13
13
|
import "@samual/lib/readDirectoryWithStats"
|
14
14
|
import "@samual/lib/copyFilePersistent"
|
15
|
-
const version = "0.19.1-
|
15
|
+
const version = "0.19.1-875bbe4",
|
16
16
|
options = new Map(),
|
17
17
|
commands = [],
|
18
18
|
userColours = new Cache(user => {
|
@@ -316,7 +316,7 @@ switch (commands[0]) {
|
|
316
316
|
: fileBaseName + ".js"
|
317
317
|
)
|
318
318
|
const golfFile = () =>
|
319
|
-
readFile(target, { encoding: "
|
319
|
+
readFile(target, { encoding: "utf8" }).then(async source => {
|
320
320
|
const timeStart = performance.now(),
|
321
321
|
{ script, warnings } = await processScript(source, {
|
322
322
|
minify: !(options.get("no-minify") || options.get("skip-minify")),
|
@@ -410,11 +410,12 @@ function logHelp() {
|
|
410
410
|
)
|
411
411
|
}
|
412
412
|
}
|
413
|
-
function logInfo({
|
413
|
+
function logInfo({ path, users, characterCount, error }, hackmudPath) {
|
414
|
+
path = relative(".", path)
|
414
415
|
error ?
|
415
|
-
logError(`
|
416
|
-
:
|
417
|
-
`
|
416
|
+
logError(`Error "${chalk.bold(error.message)}" in ${chalk.bold(path)}`)
|
417
|
+
: log(
|
418
|
+
`Pushed ${chalk.bold(path)} to ${users.map(user => chalk.bold(userColours.get(user))).join(", ")} | ${chalk.bold(characterCount + "")} chars | ${chalk.bold(resolve(hackmudPath, users[0], "scripts", basename(path, extname(path))) + ".js")}`
|
418
419
|
)
|
419
420
|
}
|
420
421
|
function logError(message) {
|