chore: bump version (#2229)

This commit is contained in:
Himself65
2023-05-04 18:49:08 -05:00
committed by GitHub
parent 097cce34b5
commit 9631c99f7b
16 changed files with 819 additions and 808 deletions

View File

@@ -38,7 +38,7 @@
"@types/better-sqlite3": "^7.6.4",
"@types/fs-extra": "^11.0.1",
"cross-env": "7.0.3",
"electron": "24.1.3",
"electron": "24.2.0",
"electron-log": "^5.0.0-beta.23",
"electron-squirrel-startup": "1.0.0",
"electron-window-state": "^5.0.3",
@@ -51,7 +51,7 @@
},
"dependencies": {
"better-sqlite3": "^8.3.0",
"yjs": "^13.6.0"
"yjs": "^13.6.1"
},
"build": {
"protocols": [

View File

@@ -45,7 +45,7 @@
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"vitest": "^0.30.1"
"vitest": "^0.31.0"
},
"nodemonConfig": {
"exec": "node",

View File

@@ -19,11 +19,11 @@
"@affine/jotai": "workspace:*",
"@affine/templates": "workspace:*",
"@affine/workspace": "workspace:*",
"@blocksuite/blocks": "0.0.0-20230502232311-bfe52748-nightly",
"@blocksuite/editor": "0.0.0-20230502232311-bfe52748-nightly",
"@blocksuite/global": "0.0.0-20230502232311-bfe52748-nightly",
"@blocksuite/blocks": "0.0.0-20230503040956-5c49643f-nightly",
"@blocksuite/editor": "0.0.0-20230503040956-5c49643f-nightly",
"@blocksuite/global": "0.0.0-20230503040956-5c49643f-nightly",
"@blocksuite/icons": "^2.1.15",
"@blocksuite/store": "0.0.0-20230502232311-bfe52748-nightly",
"@blocksuite/store": "0.0.0-20230503040956-5c49643f-nightly",
"@dnd-kit/core": "^6.0.8",
"@dnd-kit/sortable": "^7.0.2",
"@emotion/cache": "^11.10.8",
@@ -32,7 +32,7 @@
"@emotion/styled": "^11.10.8",
"@mui/material": "^5.12.3",
"@react-hookz/web": "^23.0.0",
"@sentry/nextjs": "^7.50.0",
"@sentry/nextjs": "^7.51.0",
"@toeverything/hooks": "workspace:*",
"cmdk": "^0.2.0",
"css-spring": "^4.1.0",
@@ -40,7 +40,7 @@
"graphql": "^16.6.0",
"jotai": "^2.0.4",
"jotai-devtools": "^0.5.2",
"lit": "^2.7.3",
"lit": "^2.7.4",
"lottie-web": "^5.11.0",
"next-themes": "^0.2.1",
"react": "^18.2.0",
@@ -48,7 +48,7 @@
"react-is": "^18.2.0",
"swr": "^2.1.5",
"y-protocols": "^1.0.5",
"yjs": "^13.6.0",
"yjs": "^13.6.1",
"zod": "^3.21.4"
},
"devDependencies": {
@@ -58,15 +58,15 @@
"@sentry/webpack-plugin": "^1.20.1",
"@swc-jotai/debug-label": "^0.0.10",
"@swc-jotai/react-refresh": "^0.0.8",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@types/react": "^18.2.5",
"@types/react-dom": "^18.2.3",
"@types/webpack-env": "^1.18.0",
"@vanilla-extract/css": "^1.11.0",
"@vanilla-extract/next-plugin": "^2.1.2",
"dotenv": "^16.0.3",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.5-canary.3",
"next": "^13.3.5-canary.7",
"eslint-config-next": "^13.4.0",
"next": "^13.4.0",
"next-debug-local": "^0.1.5",
"next-router-mock": "^0.9.3",
"raw-loader": "^4.0.2",

View File

@@ -10,7 +10,7 @@ dayjs.extend(localizedFormat);
export const DateCell = ({
pageMeta,
dateKey,
backupKey = '',
backupKey = 'updatedDate',
...props
}: {
pageMeta: PageMeta;

View File

@@ -50,6 +50,8 @@ function flattenToTree(
[]
);
};
// Unreachable code, we have removed the root pinboard
// @ts-expect-error
return helper(rootMeta ? [{ ...rootMeta, renderTopLine: false }] : []);
}