Skip to content

Commit

Permalink
Bump SDK to v0.9 (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcospassos authored Apr 14, 2022
1 parent fc54e38 commit b22fb38
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 12 deletions.
27 changes: 20 additions & 7 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,8 @@
"bundle": "rollup -c"
},
"dependencies": {
"@croct/sdk": "^0.8.0",
"@croct/json": "^1.1.0",
"@croct/sdk": "^0.9.1",
"tslib": "^2.2.0"
},
"devDependencies": {
Expand Down
3 changes: 1 addition & 2 deletions src/fetch.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import {JsonObject} from '@croct/sdk/json';
import {NullableJsonObject} from './sdk/json';
import {NullableJsonObject, JsonObject} from './sdk/json';

export interface SlotMap {
}
Expand Down
4 changes: 2 additions & 2 deletions src/sdk/json.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {JsonObject} from '@croct/sdk/json';
import {JsonObject} from '@croct/json';

export * from '@croct/sdk/json';
export * from '@croct/json/mutable';
export type NullableJsonObject = JsonObject | null;

0 comments on commit b22fb38

Please sign in to comment.