@hardkas/core 0.8.3-alpha → 0.8.5-alpha
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 +1 -1
- package/dist/index.js +2 -2
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -787,7 +787,7 @@ declare class AppendCoordinator {
|
|
|
787
787
|
};
|
|
788
788
|
}
|
|
789
789
|
|
|
790
|
-
declare const CURRENT_RUNTIME_VERSION = "0.8.
|
|
790
|
+
declare const CURRENT_RUNTIME_VERSION = "0.8.5-alpha";
|
|
791
791
|
declare const MIN_SUPPORTED_VERSION = "0.5.0-alpha";
|
|
792
792
|
interface MigrationStatus {
|
|
793
793
|
needsMigration: boolean;
|
package/dist/index.js
CHANGED
|
@@ -956,7 +956,7 @@ async function createSnapshot(options) {
|
|
|
956
956
|
const manifest = {
|
|
957
957
|
snapshotVersion: 1,
|
|
958
958
|
createdAt: (/* @__PURE__ */ new Date()).toISOString(),
|
|
959
|
-
hardkasVersion: "0.8.
|
|
959
|
+
hardkasVersion: "0.8.5-alpha",
|
|
960
960
|
stateAuthority: "filesystem",
|
|
961
961
|
projectionAuthority: "sqlite",
|
|
962
962
|
deterministicScope,
|
|
@@ -1205,7 +1205,7 @@ Resolution Command: ${report.exactReplayCommand}`
|
|
|
1205
1205
|
// src/migrations.ts
|
|
1206
1206
|
import fs6 from "fs";
|
|
1207
1207
|
import path8 from "path";
|
|
1208
|
-
var CURRENT_RUNTIME_VERSION = "0.8.
|
|
1208
|
+
var CURRENT_RUNTIME_VERSION = "0.8.5-alpha";
|
|
1209
1209
|
var MIN_SUPPORTED_VERSION = "0.5.0-alpha";
|
|
1210
1210
|
var MigrationManager = class {
|
|
1211
1211
|
static checkVersion(rootDir) {
|
package/package.json
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hardkas/core",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.5-alpha",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"exports": {
|
|
8
8
|
".": {
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
|
-
"import": "./dist/index.js"
|
|
10
|
+
"import": "./dist/index.js",
|
|
11
|
+
"default": "./dist/index.js"
|
|
11
12
|
}
|
|
12
13
|
},
|
|
13
14
|
"dependencies": {
|