chore: bump version (#3706)

This commit is contained in:
Alex Yang 2023-08-11 15:36:10 -04:00 committed by GitHub
parent 844e73ca29
commit 91619b87db
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
35 changed files with 2319 additions and 2355 deletions

View File

@ -31,7 +31,7 @@
"@emotion/react": "^11.11.1", "@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0", "@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0", "@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.2", "@mui/material": "^5.14.4",
"@react-hookz/web": "^23.1.0", "@react-hookz/web": "^23.1.0",
"@toeverything/components": "^0.0.10", "@toeverything/components": "^0.0.10",
"async-call-rpc": "^6.3.1", "async-call-rpc": "^6.3.1",
@ -40,9 +40,9 @@
"cssnano": "^6.0.1", "cssnano": "^6.0.1",
"graphql": "^16.7.1", "graphql": "^16.7.1",
"intl-segmenter-polyfill-rs": "^0.1.5", "intl-segmenter-polyfill-rs": "^0.1.5",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"jotai-devtools": "^0.6.1", "jotai-devtools": "^0.6.1",
"lit": "^2.7.6", "lit": "^2.8.0",
"lottie-web": "^5.12.2", "lottie-web": "^5.12.2",
"mini-css-extract-plugin": "^2.7.6", "mini-css-extract-plugin": "^2.7.6",
"next-themes": "^0.2.1", "next-themes": "^0.2.1",
@ -51,20 +51,20 @@
"react-dom": "18.2.0", "react-dom": "18.2.0",
"react-is": "18.2.0", "react-is": "18.2.0",
"react-resizable-panels": "^0.0.54", "react-resizable-panels": "^0.0.54",
"react-router-dom": "^6.14.2", "react-router-dom": "^6.15.0",
"rxjs": "^7.8.1", "rxjs": "^7.8.1",
"ses": "^0.18.7", "ses": "^0.18.7",
"swr": "2.1.5", "swr": "2.2.1",
"y-protocols": "^1.0.5", "y-protocols": "^1.0.5",
"yjs": "^13.6.7", "yjs": "^13.6.7",
"zod": "^3.21.4" "zod": "^3.21.4"
}, },
"devDependencies": { "devDependencies": {
"@perfsee/webpack": "^1.8.2", "@perfsee/webpack": "^1.8.4",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.10", "@pmmmwh/react-refresh-webpack-plugin": "^0.5.10",
"@sentry/webpack-plugin": "^2.5.0", "@sentry/webpack-plugin": "^2.6.2",
"@svgr/webpack": "^8.0.1", "@svgr/webpack": "^8.0.1",
"@swc/core": "^1.3.74", "@swc/core": "^1.3.76",
"@types/webpack-env": "^1.18.1", "@types/webpack-env": "^1.18.1",
"copy-webpack-plugin": "^11.0.0", "copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1", "css-loader": "^6.8.1",
@ -74,7 +74,7 @@
"source-map-loader": "^4.0.1", "source-map-loader": "^4.0.1",
"style-loader": "^3.3.3", "style-loader": "^3.3.3",
"swc-loader": "^0.2.3", "swc-loader": "^0.2.3",
"swc-plugin-coverage-instrument": "^0.0.19", "swc-plugin-coverage-instrument": "^0.0.20",
"thread-loader": "^4.0.2", "thread-loader": "^4.0.2",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"webpack": "^5.88.2", "webpack": "^5.88.2",

View File

@ -194,6 +194,7 @@ const timer = createTimers(abortController.signal);
const sharedGlobalThis = Object.assign(Object.create(null), timer, { const sharedGlobalThis = Object.assign(Object.create(null), timer, {
Object: globalThis.Object, Object: globalThis.Object,
fetch: pluginFetch, fetch: pluginFetch,
ReadableStream: globalThis.ReadableStream,
Symbol: globalThis.Symbol, Symbol: globalThis.Symbol,
Error: globalThis.Error, Error: globalThis.Error,
TypeError: globalThis.TypeError, TypeError: globalThis.TypeError,

View File

@ -62,7 +62,7 @@ describe('GraphQL wrapper for SWR', () => {
const el = await renderer.findByText('number: 1'); const el = await renderer.findByText('number: 1');
expect(el).toMatchInlineSnapshot(` expect(el).toMatchInlineSnapshot(`
<div> <div>
number: number:${' '}
1 1
</div> </div>
`); `);
@ -107,14 +107,7 @@ describe('GraphQL wrapper for SWR', () => {
return ( return (
<div> <div>
<button <button onClick={() => trigger()}>click</button>
onClick={() =>
// @ts-expect-error forgive the fake variables
trigger()
}
>
click
</button>
</div> </div>
); );
}; };

View File

@ -79,6 +79,7 @@ export function useMutation<Mutation extends GraphQLQuery>(
): SWRMutationResponse< ): SWRMutationResponse<
QueryResponse<Mutation>, QueryResponse<Mutation>,
GraphQLError | GraphQLError[], GraphQLError | GraphQLError[],
string,
QueryVariables<Mutation> QueryVariables<Mutation>
>; >;
export function useMutation<Mutation extends GraphQLQuery>( export function useMutation<Mutation extends GraphQLQuery>(
@ -87,6 +88,7 @@ export function useMutation<Mutation extends GraphQLQuery>(
SWRMutationConfiguration< SWRMutationConfiguration<
QueryResponse<Mutation>, QueryResponse<Mutation>,
GraphQLError | GraphQLError[], GraphQLError | GraphQLError[],
string,
QueryVariables<Mutation> QueryVariables<Mutation>
>, >,
'fetcher' 'fetcher'
@ -94,6 +96,7 @@ export function useMutation<Mutation extends GraphQLQuery>(
): SWRMutationResponse< ): SWRMutationResponse<
QueryResponse<Mutation>, QueryResponse<Mutation>,
GraphQLError | GraphQLError[], GraphQLError | GraphQLError[],
string,
QueryVariables<Mutation> QueryVariables<Mutation>
>; >;
export function useMutation( export function useMutation(

View File

@ -17,14 +17,14 @@
"@blocksuite/lit": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/lit": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly",
"express": "^4.18.2", "express": "^4.18.2",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"react": "18.3.0-canary-7118f5dd7-20230705", "react": "18.3.0-canary-7118f5dd7-20230705",
"react-dom": "18.3.0-canary-7118f5dd7-20230705", "react-dom": "18.3.0-canary-7118f5dd7-20230705",
"react-server-dom-webpack": "18.3.0-canary-7118f5dd7-20230705", "react-server-dom-webpack": "18.3.0-canary-7118f5dd7-20230705",
"waku": "0.14.0" "waku": "0.14.0"
}, },
"devDependencies": { "devDependencies": {
"@types/react": "^18.2.17", "@types/react": "^18.2.20",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",
"@vanilla-extract/css": "^1.12.0", "@vanilla-extract/css": "^1.12.0",
"@vanilla-extract/vite-plugin": "^3.8.2", "@vanilla-extract/vite-plugin": "^3.8.2",

View File

@ -44,17 +44,17 @@
"@types/fs-extra": "^11.0.1", "@types/fs-extra": "^11.0.1",
"@types/uuid": "^9.0.2", "@types/uuid": "^9.0.2",
"cross-env": "7.0.3", "cross-env": "7.0.3",
"electron": "^25.4.0", "electron": "^25.5.0",
"electron-log": "^5.0.0-beta.25", "electron-log": "^5.0.0-beta.25",
"electron-squirrel-startup": "1.0.0", "electron-squirrel-startup": "1.0.0",
"electron-window-state": "^5.0.3", "electron-window-state": "^5.0.3",
"esbuild": "^0.18.15", "esbuild": "^0.18.20",
"fs-extra": "^11.1.1", "fs-extra": "^11.1.1",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"undici": "^5.22.1", "undici": "^5.23.0",
"uuid": "^9.0.0", "uuid": "^9.0.0",
"vitest": "^0.33.0", "vitest": "0.33.0",
"which": "^3.0.1", "which": "^3.0.1",
"zx": "^7.2.3" "zx": "^7.2.3"
}, },

View File

@ -16,9 +16,9 @@
"postinstall": "prisma generate" "postinstall": "prisma generate"
}, },
"dependencies": { "dependencies": {
"@apollo/server": "^4.8.1", "@apollo/server": "^4.9.1",
"@auth/prisma-adapter": "^1.0.1", "@auth/prisma-adapter": "^1.0.1",
"@aws-sdk/client-s3": "^3.378.0", "@aws-sdk/client-s3": "^3.388.0",
"@nestjs/apollo": "^12.0.7", "@nestjs/apollo": "^12.0.7",
"@nestjs/common": "^10.1.3", "@nestjs/common": "^10.1.3",
"@nestjs/core": "^10.1.3", "@nestjs/core": "^10.1.3",
@ -27,7 +27,7 @@
"@node-rs/argon2": "^1.5.2", "@node-rs/argon2": "^1.5.2",
"@node-rs/crc32": "^1.7.2", "@node-rs/crc32": "^1.7.2",
"@node-rs/jsonwebtoken": "^0.2.3", "@node-rs/jsonwebtoken": "^0.2.3",
"@prisma/client": "^5.0.0", "@prisma/client": "^5.1.1",
"cookie-parser": "^1.4.6", "cookie-parser": "^1.4.6",
"dotenv": "^16.3.1", "dotenv": "^16.3.1",
"express": "^4.18.2", "express": "^4.18.2",
@ -35,8 +35,8 @@
"graphql-type-json": "^0.3.2", "graphql-type-json": "^0.3.2",
"graphql-upload": "^16.0.2", "graphql-upload": "^16.0.2",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"next-auth": "^4.22.1", "next-auth": "4.22.1",
"nodemailer": "^6.9.3", "nodemailer": "^6.9.4",
"parse-duration": "^1.1.0", "parse-duration": "^1.1.0",
"prisma": "^5.1.1", "prisma": "^5.1.1",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.13",
@ -50,7 +50,7 @@
"@types/cookie-parser": "^1.4.3", "@types/cookie-parser": "^1.4.3",
"@types/express": "^4.17.17", "@types/express": "^4.17.17",
"@types/lodash-es": "^4.17.8", "@types/lodash-es": "^4.17.8",
"@types/node": "^18.17.1", "@types/node": "^18.17.4",
"@types/nodemailer": "^6.4.9", "@types/nodemailer": "^6.4.9",
"@types/supertest": "^2.0.12", "@types/supertest": "^2.0.12",
"c8": "^8.0.1", "c8": "^8.0.1",

View File

@ -9,23 +9,23 @@
"dependencies": { "dependencies": {
"@affine/component": "workspace:*", "@affine/component": "workspace:*",
"@affine/i18n": "workspace:*", "@affine/i18n": "workspace:*",
"@storybook/addon-actions": "^7.1.1", "@storybook/addon-actions": "^7.2.3",
"@storybook/addon-essentials": "^7.1.1", "@storybook/addon-essentials": "^7.2.3",
"@storybook/addon-interactions": "^7.1.1", "@storybook/addon-interactions": "^7.2.3",
"@storybook/addon-links": "^7.1.1", "@storybook/addon-links": "^7.2.3",
"@storybook/addon-storysource": "^7.1.1", "@storybook/addon-storysource": "^7.2.3",
"@storybook/blocks": "^7.1.1", "@storybook/blocks": "^7.2.3",
"@storybook/builder-vite": "^7.1.1", "@storybook/builder-vite": "^7.2.3",
"@storybook/jest": "^0.1.0", "@storybook/jest": "^0.1.0",
"@storybook/react": "^7.1.1", "@storybook/react": "^7.2.3",
"@storybook/react-vite": "^7.1.1", "@storybook/react-vite": "^7.2.3",
"@storybook/test-runner": "^0.13.0", "@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.0", "@storybook/testing-library": "^0.2.0",
"@vitejs/plugin-react": "^4.0.4", "@vitejs/plugin-react": "^4.0.4",
"concurrently": "^8.2.0", "concurrently": "^8.2.0",
"jest-mock": "^29.6.2", "jest-mock": "^29.6.2",
"serve": "^14.2.0", "serve": "^14.2.0",
"storybook": "^7.1.1", "storybook": "^7.2.3",
"storybook-dark-mode": "^3.0.1", "storybook-dark-mode": "^3.0.1",
"wait-on": "^7.0.1" "wait-on": "^7.0.1"
}, },

View File

@ -61,40 +61,40 @@
"@affine-test/kit": "workspace:*", "@affine-test/kit": "workspace:*",
"@affine/cli": "workspace:*", "@affine/cli": "workspace:*",
"@affine/plugin-cli": "workspace:*", "@affine/plugin-cli": "workspace:*",
"@commitlint/cli": "^17.6.7", "@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.6.7", "@commitlint/config-conventional": "^17.7.0",
"@faker-js/faker": "^8.0.2", "@faker-js/faker": "^8.0.2",
"@istanbuljs/schema": "^0.1.3", "@istanbuljs/schema": "^0.1.3",
"@magic-works/i18n-codegen": "^0.5.0", "@magic-works/i18n-codegen": "^0.5.0",
"@nx/vite": "16.6.0", "@nx/vite": "16.6.0",
"@perfsee/sdk": "^1.8.5", "@perfsee/sdk": "^1.9.0",
"@playwright/test": "^1.36.2", "@playwright/test": "^1.37.0",
"@taplo/cli": "^0.5.2", "@taplo/cli": "^0.5.2",
"@testing-library/react": "^14.0.0", "@testing-library/react": "^14.0.0",
"@toeverything/infra": "workspace:*", "@toeverything/infra": "workspace:*",
"@types/affine__env": "workspace:*", "@types/affine__env": "workspace:*",
"@types/eslint": "^8.44.2", "@types/eslint": "^8.44.2",
"@types/node": "^18.17.1", "@types/node": "^18.17.4",
"@typescript-eslint/eslint-plugin": "^6.2.1", "@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.2.1", "@typescript-eslint/parser": "^6.3.0",
"@vanilla-extract/vite-plugin": "^3.8.2", "@vanilla-extract/vite-plugin": "^3.8.2",
"@vanilla-extract/webpack-plugin": "^2.2.0", "@vanilla-extract/webpack-plugin": "^2.2.0",
"@vitejs/plugin-react-swc": "^3.3.2", "@vitejs/plugin-react-swc": "^3.3.2",
"@vitest/coverage-istanbul": "^0.33.0", "@vitest/coverage-istanbul": "0.33.0",
"@vitest/ui": "^0.33.0", "@vitest/ui": "0.33.0",
"eslint": "^8.46.0", "eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.0.0",
"eslint-plugin-i": "^2.27.5-3", "eslint-plugin-i": "^2.28.0",
"eslint-plugin-prettier": "^5.0.0", "eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.33.0", "eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0", "eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-simple-import-sort": "^10.0.0", "eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-sonarjs": "^0.20.0", "eslint-plugin-sonarjs": "^0.20.0",
"eslint-plugin-unicorn": "^48.0.0", "eslint-plugin-unicorn": "^48.0.1",
"eslint-plugin-unused-imports": "^3.0.0", "eslint-plugin-unused-imports": "^3.0.0",
"eslint-plugin-vue": "^9.16.1", "eslint-plugin-vue": "^9.17.0",
"fake-indexeddb": "4.0.2", "fake-indexeddb": "4.0.2",
"happy-dom": "^10.8.0", "happy-dom": "^10.9.0",
"husky": "^8.0.3", "husky": "^8.0.3",
"lint-staged": "^13.2.3", "lint-staged": "^13.2.3",
"madge": "^6.1.0", "madge": "^6.1.0",
@ -103,7 +103,7 @@
"nx": "16.6.0", "nx": "16.6.0",
"nx-cloud": "latest", "nx-cloud": "latest",
"nyc": "^15.1.0", "nyc": "^15.1.0",
"prettier": "^3.0.0", "prettier": "^3.0.1",
"semver": "^7.5.4", "semver": "^7.5.4",
"serve": "^14.2.0", "serve": "^14.2.0",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
@ -112,9 +112,9 @@
"vite-plugin-istanbul": "^5.0.0", "vite-plugin-istanbul": "^5.0.0",
"vite-plugin-static-copy": "^0.17.0", "vite-plugin-static-copy": "^0.17.0",
"vite-tsconfig-paths": "^4.2.0", "vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0", "vitest": "0.33.0",
"vitest-fetch-mock": "^0.2.2", "vitest-fetch-mock": "^0.2.2",
"vitest-mock-extended": "^1.1.4" "vitest-mock-extended": "^1.2.0"
}, },
"packageManager": "yarn@3.6.0" "packageManager": "yarn@3.6.0"
} }

View File

@ -11,7 +11,7 @@
}, },
"devDependencies": { "devDependencies": {
"@clack/core": "^0.3.3", "@clack/core": "^0.3.3",
"@clack/prompts": "^0.6.3", "@clack/prompts": "^0.7.0",
"ts-node": "^10.9.1" "ts-node": "^10.9.1"
}, },
"dependencies": { "dependencies": {

View File

@ -26,9 +26,9 @@
"@emotion/react": "^11.11.1", "@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0", "@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0", "@emotion/styled": "^11.11.0",
"@mui/base": "5.0.0-beta.8", "@mui/base": "5.0.0-beta.10",
"@mui/icons-material": "^5.14.1", "@mui/icons-material": "^5.14.3",
"@mui/material": "^5.14.2", "@mui/material": "^5.14.4",
"@popperjs/core": "^2.11.8", "@popperjs/core": "^2.11.8",
"@radix-ui/react-avatar": "^1.0.3", "@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.3", "@radix-ui/react-collapsible": "^1.0.3",
@ -36,17 +36,17 @@
"@radix-ui/react-scroll-area": "^1.0.4", "@radix-ui/react-scroll-area": "^1.0.4",
"@radix-ui/react-toast": "^1.1.4", "@radix-ui/react-toast": "^1.1.4",
"@toeverything/hooks": "workspace:*", "@toeverything/hooks": "workspace:*",
"@toeverything/theme": "^0.7.11", "@toeverything/theme": "^0.7.12",
"@vanilla-extract/dynamic": "^2.0.3", "@vanilla-extract/dynamic": "^2.0.3",
"clsx": "^2.0.0", "clsx": "^2.0.0",
"dayjs": "^1.11.9", "dayjs": "^1.11.9",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"lit": "^2.7.6", "lit": "^2.8.0",
"lottie-web": "^5.12.2", "lottie-web": "^5.12.2",
"react": "18.2.0", "react": "18.2.0",
"react-datepicker": "^4.16.0", "react-datepicker": "^4.16.0",
"react-dom": "18.2.0", "react-dom": "18.2.0",
"react-error-boundary": "^4.0.10", "react-error-boundary": "^4.0.11",
"react-is": "^18.2.0", "react-is": "^18.2.0",
"rxjs": "^7.8.1" "rxjs": "^7.8.1"
}, },
@ -57,7 +57,7 @@
"@blocksuite/icons": "^2.1.31", "@blocksuite/icons": "^2.1.31",
"@blocksuite/lit": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/lit": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly",
"@types/react": "^18.2.17", "@types/react": "^18.2.20",
"@types/react-datepicker": "^4.15.0", "@types/react-datepicker": "^4.15.0",
"@types/react-dnd": "^3.0.2", "@types/react-dnd": "^3.0.2",
"@types/react-dom": "^18.2.7", "@types/react-dom": "^18.2.7",

View File

@ -1,4 +1,4 @@
import ModalUnstyled from '@mui/base/Modal'; import { Modal as ModalUnstyled } from '@mui/base/Modal';
import type { CSSProperties } from 'react'; import type { CSSProperties } from 'react';
import { styled } from '../../styles'; import { styled } from '../../styles';

View File

@ -1,4 +1,4 @@
import MuiClickAwayListener from '@mui/base/ClickAwayListener'; import { ClickAwayListener as MuiClickAwayListener } from '@mui/base/ClickAwayListener';
import MuiAvatar from '@mui/material/Avatar'; import MuiAvatar from '@mui/material/Avatar';
import MuiBreadcrumbs from '@mui/material/Breadcrumbs'; import MuiBreadcrumbs from '@mui/material/Breadcrumbs';
import MuiCollapse from '@mui/material/Collapse'; import MuiCollapse from '@mui/material/Collapse';
@ -6,6 +6,7 @@ import MuiFade from '@mui/material/Fade';
import MuiGrow from '@mui/material/Grow'; import MuiGrow from '@mui/material/Grow';
import MuiSkeleton from '@mui/material/Skeleton'; import MuiSkeleton from '@mui/material/Skeleton';
import MuiSlide from '@mui/material/Slide'; import MuiSlide from '@mui/material/Slide';
export { export {
MuiAvatar, MuiAvatar,
MuiBreadcrumbs, MuiBreadcrumbs,

View File

@ -1,5 +1,5 @@
import ClickAwayListener from '@mui/base/ClickAwayListener'; import { ClickAwayListener } from '@mui/base/ClickAwayListener';
import PopperUnstyled from '@mui/base/Popper'; import { Popper as PopperUnstyled } from '@mui/base/Popper';
import Grow from '@mui/material/Grow'; import Grow from '@mui/material/Grow';
import type { CSSProperties, PointerEvent } from 'react'; import type { CSSProperties, PointerEvent } from 'react';
import { import {

View File

@ -25,7 +25,7 @@
"@toeverything/infra": "workspace:*" "@toeverything/infra": "workspace:*"
}, },
"dependencies": { "dependencies": {
"lit": "^2.7.6" "lit": "^2.8.0"
}, },
"version": "0.8.0-canary.18" "version": "0.8.0-canary.18"
} }

View File

@ -16,7 +16,7 @@
"@graphql-codegen/typescript-operations": "^4.0.1", "@graphql-codegen/typescript-operations": "^4.0.1",
"@types/lodash-es": "^4.17.8", "@types/lodash-es": "^4.17.8",
"lodash-es": "^4.17.21", "lodash-es": "^4.17.21",
"prettier": "^3.0.0" "prettier": "^3.0.1"
}, },
"scripts": { "scripts": {
"postinstall": "gql-gen" "postinstall": "gql-gen"

View File

@ -27,13 +27,13 @@
"url": "git+https://github.com/toeverything/AFFiNE.git" "url": "git+https://github.com/toeverything/AFFiNE.git"
}, },
"dependencies": { "dependencies": {
"i18next": "^23.2.11", "i18next": "^23.4.4",
"react-i18next": "^13.0.2" "react-i18next": "^13.1.2"
}, },
"devDependencies": { "devDependencies": {
"@types/node": "^18.17.1", "@types/node": "^18.17.4",
"@types/prettier": "^2.7.3", "@types/prettier": "^3.0.0",
"prettier": "^3.0.0", "prettier": "^3.0.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.1",
"typescript": "^5.1.6" "typescript": "^5.1.6"
}, },

View File

@ -53,7 +53,7 @@
"@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"zod": "^3.21.4" "zod": "^3.21.4"
}, },
"devDependencies": { "devDependencies": {

View File

@ -3,7 +3,7 @@
"private": true, "private": true,
"main": "./src/index.ts", "main": "./src/index.ts",
"dependencies": { "dependencies": {
"jotai": "^2.2.2" "jotai": "^2.3.1"
}, },
"devDependencies": { "devDependencies": {
"@blocksuite/block-std": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/block-std": "0.0.0-20230811080927-c830f4d4-nightly",

View File

@ -18,8 +18,8 @@
}, },
"license": "MPL-2.0", "license": "MPL-2.0",
"devDependencies": { "devDependencies": {
"@napi-rs/cli": "^2.16.1", "@napi-rs/cli": "^2.16.2",
"@types/node": "^18.17.1", "@types/node": "^18.17.4",
"@types/uuid": "^9.0.2", "@types/uuid": "^9.0.2",
"cross-env": "^7.0.3", "cross-env": "^7.0.3",
"rxjs": "^7.8.1", "rxjs": "^7.8.1",

View File

@ -11,11 +11,11 @@
], ],
"dependencies": { "dependencies": {
"@endo/static-module-record": "^0.8.1", "@endo/static-module-record": "^0.8.1",
"@swc/core": "^1.3.74", "@swc/core": "^1.3.76",
"@toeverything/infra": "workspace:^", "@toeverything/infra": "workspace:^",
"@vanilla-extract/rollup-plugin": "^1.2.2", "@vanilla-extract/rollup-plugin": "^1.2.2",
"@vitejs/plugin-vue": "^4.2.3", "@vitejs/plugin-vue": "^4.2.3",
"rollup": "^3.27.0", "rollup": "^3.28.0",
"rollup-plugin-swc3": "^0.9.1", "rollup-plugin-swc3": "^0.9.1",
"ts-node": "^10.9.1" "ts-node": "^10.9.1"
} }

View File

@ -25,7 +25,7 @@
"@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"zod": "^3.21.4" "zod": "^3.21.4"
}, },
"devDependencies": { "devDependencies": {

View File

@ -36,7 +36,7 @@
"version": "napi version" "version": "napi version"
}, },
"devDependencies": { "devDependencies": {
"@napi-rs/cli": "^3.0.0-alpha.4", "@napi-rs/cli": "^3.0.0-alpha.5",
"lib0": "^0.2.80", "lib0": "^0.2.80",
"yjs": "^13.6.7" "yjs": "^13.6.7"
} }

View File

@ -6,6 +6,6 @@
"dev": "wrangler dev" "dev": "wrangler dev"
}, },
"devDependencies": { "devDependencies": {
"wrangler": "^3.4.0" "wrangler": "^3.5.0"
} }
} }

View File

@ -20,7 +20,7 @@
"@toeverything/hooks": "workspace:*", "@toeverything/hooks": "workspace:*",
"@toeverything/y-indexeddb": "workspace:*", "@toeverything/y-indexeddb": "workspace:*",
"async-call-rpc": "^6.3.1", "async-call-rpc": "^6.3.1",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"js-base64": "^3.7.5", "js-base64": "^3.7.5",
"ky": "^0.33.3", "ky": "^0.33.3",
"lib0": "^0.2.80", "lib0": "^0.2.80",

View File

@ -18,16 +18,16 @@
"@affine/sdk": "workspace:*", "@affine/sdk": "workspace:*",
"@toeverything/components": "^0.0.10", "@toeverything/components": "^0.0.10",
"idb": "^7.1.1", "idb": "^7.1.1",
"langchain": "^0.0.118", "langchain": "^0.0.126",
"marked": "^7.0.1", "marked": "^7.0.2",
"marked-gfm-heading-id": "^3.0.4", "marked-gfm-heading-id": "^3.0.6",
"marked-mangle": "^1.1.0", "marked-mangle": "^1.1.2",
"zod": "^3.21.4" "zod": "^3.21.4"
}, },
"devDependencies": { "devDependencies": {
"@affine/plugin-cli": "workspace:*", "@affine/plugin-cli": "workspace:*",
"@types/marked": "^5.0.1", "@types/marked": "^5.0.1",
"jotai": "^2.2.2", "jotai": "^2.3.1",
"react": "18.2.0", "react": "18.2.0",
"react-dom": "18.2.0" "react-dom": "18.2.0"
}, },

View File

@ -18,11 +18,11 @@
"@affine/sdk": "workspace:*", "@affine/sdk": "workspace:*",
"@blocksuite/icons": "^2.1.31", "@blocksuite/icons": "^2.1.31",
"@toeverything/components": "^0.0.10", "@toeverything/components": "^0.0.10",
"@toeverything/theme": "^0.7.11", "@toeverything/theme": "^0.7.12",
"clsx": "^2.0.0", "clsx": "^2.0.0",
"foxact": "^0.2.17", "foxact": "^0.2.17",
"react-error-boundary": "^4.0.10", "react-error-boundary": "^4.0.11",
"swr": "2.1.5" "swr": "2.2.1"
}, },
"devDependencies": { "devDependencies": {
"@affine/plugin-cli": "workspace:*" "@affine/plugin-cli": "workspace:*"

View File

@ -14,7 +14,7 @@
"@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly",
"@playwright/test": "^1.36.2", "@playwright/test": "^1.37.0",
"express": "^4.18.2", "express": "^4.18.2",
"http-proxy-middleware": "^3.0.0-beta.1", "http-proxy-middleware": "^3.0.0-beta.1",
"serve": "^14.2.0" "serve": "^14.2.0"

View File

@ -13,7 +13,7 @@
"@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/blocks": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/global": "0.0.0-20230811080927-c830f4d4-nightly",
"@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly", "@blocksuite/store": "0.0.0-20230811080927-c830f4d4-nightly",
"@playwright/test": "^1.36.2", "@playwright/test": "^1.37.0",
"express": "^4.18.2", "express": "^4.18.2",
"http-proxy-middleware": "^3.0.0-beta.1", "http-proxy-middleware": "^3.0.0-beta.1",
"serve": "^14.2.0" "serve": "^14.2.0"

View File

@ -7,7 +7,7 @@
"devDependencies": { "devDependencies": {
"@affine-test/fixtures": "workspace:*", "@affine-test/fixtures": "workspace:*",
"@affine-test/kit": "workspace:*", "@affine-test/kit": "workspace:*",
"@playwright/test": "^1.36.2" "@playwright/test": "^1.37.0"
}, },
"version": "0.8.0-canary.18" "version": "0.8.0-canary.18"
} }

View File

@ -12,7 +12,7 @@ test('plugin should exist', async ({ page }) => {
await openHomePage(page); await openHomePage(page);
await waitEditorLoad(page); await waitEditorLoad(page);
await page.route('**/plugins/**/package.json', route => route.fetch(), { await page.route('**/plugins/**/package.json', route => route.fetch(), {
times: 4, times: 5,
}); });
await page.waitForTimeout(50); await page.waitForTimeout(50);
const packageJson = await page.evaluate(() => { const packageJson = await page.evaluate(() => {

View File

@ -7,7 +7,7 @@
"devDependencies": { "devDependencies": {
"@affine-test/fixtures": "workspace:*", "@affine-test/fixtures": "workspace:*",
"@affine-test/kit": "workspace:*", "@affine-test/kit": "workspace:*",
"@playwright/test": "^1.36.2" "@playwright/test": "^1.37.0"
}, },
"version": "0.8.0-canary.18" "version": "0.8.0-canary.18"
} }

View File

@ -7,7 +7,7 @@
"devDependencies": { "devDependencies": {
"@affine-test/fixtures": "workspace:*", "@affine-test/fixtures": "workspace:*",
"@affine-test/kit": "workspace:*", "@affine-test/kit": "workspace:*",
"@playwright/test": "^1.36.2" "@playwright/test": "^1.37.0"
}, },
"version": "0.8.0-canary.18" "version": "0.8.0-canary.18"
} }

View File

@ -7,7 +7,7 @@
"./utils/*": "./utils/*.ts" "./utils/*": "./utils/*.ts"
}, },
"devDependencies": { "devDependencies": {
"@playwright/test": "^1.36.2" "@playwright/test": "^1.37.0"
}, },
"peerDependencies": { "peerDependencies": {
"@playwright/test": "*" "@playwright/test": "*"

4468
yarn.lock

File diff suppressed because it is too large Load Diff