tachyon-protocol 0.1.2 → 0.1.4

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/dist/index.d.ts CHANGED
@@ -458,7 +458,7 @@ export type SystemVersionResponse =
458
458
  command: "system/version/response";
459
459
  status: "success";
460
460
  data: {
461
- tachyonVersion: "0.1.1";
461
+ tachyonVersion: "0.1.2";
462
462
  versionParity: "major_mismatch" | "minor_mismatch" | "patch_mismatch" | "match" | "unknown";
463
463
  };
464
464
  }
@@ -18,7 +18,7 @@
18
18
  "type": "object",
19
19
  "properties": {
20
20
  "tachyonVersion": {
21
- "const": "0.1.1",
21
+ "const": "0.1.2",
22
22
  "type": "string"
23
23
  },
24
24
  "versionParity": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tachyon-protocol",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {
@@ -10,7 +10,7 @@
10
10
  "lint": "eslint . --ext .ts --fix",
11
11
  "format": "prettier --write src/**/*.ts",
12
12
  "test": "jest",
13
- "prepublish": "patch-package"
13
+ "prepublish": "npm run build && patch-package"
14
14
  },
15
15
  "files": [
16
16
  "dist"