chore: bump version (#1618)

This commit is contained in:
Himself65
2023-03-20 00:07:54 -05:00
committed by GitHub
parent 4e7ff3862f
commit f6c1423361
20 changed files with 199 additions and 833 deletions

View File

@@ -14,8 +14,8 @@
},
"dependencies": {
"@affine/debug": "workspace:*",
"@blocksuite/blocks": "0.5.0-20230317014705-a881b9c",
"@blocksuite/store": "0.5.0-20230317014705-a881b9c",
"@blocksuite/blocks": "0.5.0-20230320034723-8dfc65e",
"@blocksuite/store": "0.5.0-20230320034723-8dfc65e",
"@tauri-apps/api": "^1.2.0",
"encoding": "^0.1.13",
"firebase": "^9.18.0",
@@ -23,7 +23,7 @@
"js-base64": "^3.7.5",
"ky": "^0.33.3",
"ky-universal": "^0.11.0",
"lib0": "^0.2.68",
"lib0": "^0.2.69",
"lit": "^2.6.1",
"y-protocols": "^1.0.5",
"yjs": "^13.5.50"

View File

@@ -1,4 +1,4 @@
import { __unstableSchemas, builtInSchemas } from '@blocksuite/blocks/models';
import { __unstableSchemas, AffineSchemas } from '@blocksuite/blocks/models';
import type { StoreOptions } from '@blocksuite/store';
import { Workspace as BlocksuiteWorkspace } from '@blocksuite/store';
@@ -8,7 +8,7 @@ export const createBlocksuiteWorkspace = (options: StoreOptions) => {
isSSR: typeof window === 'undefined',
...options,
})
.register(builtInSchemas)
.register(AffineSchemas)
.register(__unstableSchemas);
};