Skip to content
This repository was archived by the owner on Jul 10, 2025. It is now read-only.

Commit 04c278b

Browse files
author
Akim
authored
feat!: Force release of interfaces (#388)
Force release of interfaces
1 parent 65a9e44 commit 04c278b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

.github/release-please/config.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
"packages/core/js-client": {},
1212
"packages/core/js-client-isomorphic": {},
1313
"packages/core/marine-worker": {},
14-
"packages/core/aqua-to-js": {}
14+
"packages/core/aqua-to-js": {},
15+
"packages/core/interfaces": {}
1516
}
1617
}

.github/release-please/manifest.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"packages/core/js-client": "0.5.1",
33
"packages/core/marine-worker": "0.5.0",
44
"packages/core/aqua-to-js": "0.3.1",
5-
"packages/core/js-client-isomorphic": "0.3.0"
5+
"packages/core/js-client-isomorphic": "0.3.0",
6+
"packages/core/interfaces": "0.8.2"
67
}

packages/core/interfaces/src/commonTypes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ export type JSONValue =
2626
| null
2727
| { [x: string]: JSONValue }
2828
| Array<JSONValue>;
29-
export type JSONArray = Array<JSONValue>;
3029
export type JSONObject = { [x: string]: JSONValue };
30+
export type JSONArray = Array<JSONValue>;

0 commit comments

Comments
 (0)