Skip to content

Commit

Permalink
feat!: Force release of interfaces (#388)
Browse files Browse the repository at this point in the history
Force release of interfaces
  • Loading branch information
Akim authored Nov 23, 2023
1 parent 65a9e44 commit 04c278b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/release-please/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"packages/core/js-client": {},
"packages/core/js-client-isomorphic": {},
"packages/core/marine-worker": {},
"packages/core/aqua-to-js": {}
"packages/core/aqua-to-js": {},
"packages/core/interfaces": {}
}
}
3 changes: 2 additions & 1 deletion .github/release-please/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,6 @@
"packages/core/js-client": "0.5.1",
"packages/core/marine-worker": "0.5.0",
"packages/core/aqua-to-js": "0.3.1",
"packages/core/js-client-isomorphic": "0.3.0"
"packages/core/js-client-isomorphic": "0.3.0",
"packages/core/interfaces": "0.8.2"
}
2 changes: 1 addition & 1 deletion packages/core/interfaces/src/commonTypes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ export type JSONValue =
| null
| { [x: string]: JSONValue }
| Array<JSONValue>;
export type JSONArray = Array<JSONValue>;
export type JSONObject = { [x: string]: JSONValue };
export type JSONArray = Array<JSONValue>;

0 comments on commit 04c278b

Please sign in to comment.