goldsync 0.1.12 → 0.1.13

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.
@@ -22,7 +22,7 @@ local CLIENT_HEADERS = {
22
22
  }
23
23
  local SETTINGS_PREFIX = "GoldSync:v2:"
24
24
  local UI_SETTINGS_PREFIX = "GoldSync:ui:v1:"
25
- local VERSION = "0.1.11"
25
+ local VERSION = "0.1.13"
26
26
  local REQUEST_INTERVAL_SECONDS = 0.15
27
27
  local REQUEST_RETRY_DELAYS = { 1, 2, 4 }
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "goldsync",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "Automatic native Roblox asset synchronization for Rojo projects.",
5
5
  "author": "tay",
6
6
  "license": "SEE LICENSE IN LICENSE.txt",
@@ -20,6 +20,7 @@
20
20
  "scripts": {
21
21
  "test": "node --test",
22
22
  "package:companion": "node scripts/package-companion.mjs",
23
+ "prepublishOnly": "npm test",
23
24
  "prepack": "node scripts/prepare-npm-package.mjs",
24
25
  "postpack": "node scripts/cleanup-npm-package.mjs"
25
26
  },