hackmud-script-manager 0.20.0 → 0.20.1-503b02c

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3) hide show
  1. package/bin/hsm.js +1 -1
  2. package/package.json +1 -1
  3. package/watch.js +1 -1
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.20.0",
15
+ const version = "0.20.1-503b02c",
16
16
  options = new Map(),
17
17
  commands = [],
18
18
  userColours = new Cache(user => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hackmud-script-manager",
3
- "version": "0.20.0",
3
+ "version": "0.20.1-503b02c",
4
4
  "description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
5
5
  "keywords": [
6
6
  "api",
package/watch.js CHANGED
@@ -71,7 +71,7 @@ async function watch(
71
71
  : scriptName && "*" != scriptName ? wildUserScripts.add(scriptName)
72
72
  : (pushEverything = !0)
73
73
  }
74
- const watcher = watch$1(["*/*.ts", "*/*.js"], {
74
+ const watcher = watch$1(["*.ts", "*.js", "*/*.ts", "*/*.js"], {
75
75
  cwd: sourceDirectory,
76
76
  awaitWriteFinish: { stabilityThreshold: 100 },
77
77
  ignored: "*.d.ts"