hackmud-script-manager 0.20.3-d3fbb44 → 0.20.4-0e584dd

Sign up to get free protection for your applications and to get access to all the features.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hackmud-script-manager",
3
- "version": "0.20.3-d3fbb44",
3
+ "version": "0.20.4-0e584dd",
4
4
  "description": "Script manager for game hackmud, with minification, TypeScript support, and player script type definition generation.",
5
5
  "keywords": [
6
6
  "api",
@@ -409,7 +409,7 @@ function parseArrayExpression(node, o) {
409
409
  if (!element) return !1
410
410
  if ("ArrayExpression" == element.type) {
411
411
  const childArray = []
412
- if (!element.elements.length && parseArrayExpression(element, childArray)) return !1
412
+ if (element.elements.length && !parseArrayExpression(element, childArray)) return !1
413
413
  o.push(childArray)
414
414
  } else if ("ObjectExpression" == element.type) {
415
415
  const childObject = {}
package/syncMacros.js CHANGED
@@ -37,7 +37,7 @@ async function syncMacros(hackmudPath) {
37
37
  macroFile += `${name}\n${macro}\n`
38
38
  macrosSynced++
39
39
  }
40
- for (const user of users) writeFile(resolve(hackmudPath, user + ".macros"), macroFile)
40
+ await Promise.all(users.map(async user => writeFile(resolve(hackmudPath, user + ".macros"), macroFile)))
41
41
  return { macrosSynced, usersSynced: users.length }
42
42
  }
43
43
  export { syncMacros }