style: enable no-extraneous-dependencies lint rule (#4575)

This commit is contained in:
LongYinan 2023-10-11 01:51:47 +08:00 committed by GitHub
parent c8d1de3a59
commit b1eb926b7b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
25 changed files with 467 additions and 323 deletions

View File

@ -252,6 +252,7 @@ const config = {
},
],
'@typescript-eslint/no-misused-promises': ['error'],
'i/no-extraneous-dependencies': ['error'],
},
})),
{

View File

@ -1,15 +1,15 @@
diff --git a/package.json b/package.json
index b64804360e64896c2eafde5e976dde0db480b4e3..63566d9e2725630827daefeeb211b950d329521b 100644
index 26dcf8217f3e221e4c53722f14d29bb788332772..57a66dcb0943b9dd5cdaac2eaffccd9225a6b735 100644
--- a/package.json
+++ b/package.json
@@ -31,6 +31,10 @@
"types": "./index.d.ts",
"default": "./index.js"
@@ -34,6 +34,10 @@
"./adapters": {
"types": "./adapters.d.ts"
},
+ "./core": {
+ "types": "./core/index.d.ts",
+ "default": "./core/index.js"
+ },
"./adapters": {
"types": "./adapters.d.ts"
},
"./jwt": {
"types": "./jwt/index.d.ts",
"default": "./jwt/index.js"

View File

@ -23,6 +23,7 @@ import { WebpackS3Plugin, gitShortHash } from './s3-plugin.js';
const IN_CI = !!process.env.CI;
export const rootPath = fileURLToPath(new URL('..', import.meta.url));
const workspaceRoot = join(rootPath, '..', '..');
const require = createRequire(rootPath);
@ -144,66 +145,70 @@ export const createConfiguration: (
: {
events: false,
},
alias:
blocksuiteBaseDir === undefined
? undefined
: {
yjs: require.resolve('yjs'),
'@blocksuite/block-std': resolve(
blocksuiteBaseDir,
'packages',
'block-std',
'src'
),
'@blocksuite/blocks': resolve(
blocksuiteBaseDir,
'packages',
'blocks',
'src'
),
'@blocksuite/editor': resolve(
blocksuiteBaseDir,
'packages',
'editor',
'src'
),
'@blocksuite/global': resolve(
blocksuiteBaseDir,
'packages',
'global',
'src'
),
'@blocksuite/lit': resolve(
blocksuiteBaseDir,
'packages',
'lit',
'src'
),
'@blocksuite/phasor': resolve(
blocksuiteBaseDir,
'packages',
'phasor',
'src'
),
'@blocksuite/store/providers/broadcast-channel': resolve(
blocksuiteBaseDir,
'packages',
'store',
'src/providers/broadcast-channel'
),
'@blocksuite/store': resolve(
blocksuiteBaseDir,
'packages',
'store',
'src'
),
'@blocksuite/virgo': resolve(
blocksuiteBaseDir,
'packages',
'virgo',
'src'
),
},
alias: {
yjs: require.resolve('yjs'),
'@blocksuite/block-std': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'block-std', 'src')
: join(
workspaceRoot,
'node_modules',
'@blocksuite',
'block-std',
'dist'
),
'@blocksuite/blocks': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'blocks', 'src')
: join(
workspaceRoot,
'node_modules',
'@blocksuite',
'blocks',
'dist'
),
'@blocksuite/editor': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'editor', 'src')
: join(
workspaceRoot,
'node_modules',
'@blocksuite',
'editor',
'dist'
),
'@blocksuite/global': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'global', 'src')
: join(
workspaceRoot,
'node_modules',
'@blocksuite',
'global',
'dist'
),
'@blocksuite/lit': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'lit', 'src')
: join(workspaceRoot, 'node_modules', '@blocksuite', 'lit', 'dist'),
'@blocksuite/store/providers/broadcast-channel': blocksuiteBaseDir
? join(
blocksuiteBaseDir,
'packages',
'store',
'src/providers/broadcast-channel'
)
: join(
workspaceRoot,
'node_modules',
'@blocksuite',
'store',
'dist',
'providers',
'broadcast-channel.js'
),
'@blocksuite/store': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'store', 'src')
: join(workspaceRoot, 'node_modules', '@blocksuite', 'store', 'dist'),
'@blocksuite/virgo': blocksuiteBaseDir
? join(blocksuiteBaseDir, 'packages', 'virgo', 'src')
: join(workspaceRoot, 'node_modules', '@blocksuite', 'virgo', 'dist'),
},
},
module: {

View File

@ -28,7 +28,7 @@
"@blocksuite/blocks": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/editor": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/icons": "^2.1.33",
"@blocksuite/icons": "2.1.34",
"@blocksuite/lit": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"@dnd-kit/core": "^6.0.8",
@ -37,7 +37,7 @@
"@emotion/react": "^11.11.1",
"@emotion/server": "^11.11.0",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.7",
"@mui/material": "^5.14.12",
"@radix-ui/react-select": "^1.2.2",
"@react-hookz/web": "^23.1.0",
"@toeverything/components": "^0.0.43",
@ -46,26 +46,26 @@
"cssnano": "^6.0.1",
"graphql": "^16.8.1",
"intl-segmenter-polyfill-rs": "^0.1.6",
"jotai": "^2.4.2",
"jotai": "^2.4.3",
"jotai-devtools": "^0.6.2",
"lit": "^2.8.0",
"lottie-web": "^5.12.2",
"mini-css-extract-plugin": "^2.7.6",
"next-auth": "^4.23.1",
"next-auth": "^4.23.2",
"next-themes": "^0.2.1",
"postcss-loader": "^7.3.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-is": "18.2.0",
"react-resizable-panels": "^0.0.55",
"react-router-dom": "^6.15.0",
"react-router-dom": "^6.16.0",
"rxjs": "^7.8.1",
"ses": "^0.18.8",
"swr": "2.2.0",
"valtio": "^1.11.2",
"y-protocols": "^1.0.6",
"yjs": "^13.6.8",
"zod": "^3.22.2"
"zod": "^3.22.4"
},
"devDependencies": {
"@aws-sdk/client-s3": "3.418.0",

View File

@ -50,6 +50,7 @@
"@reforged/maker-appimage": "^3.3.1",
"@toeverything/infra": "workspace:*",
"@types/uuid": "^9.0.4",
"builder-util-runtime": "^9.2.1",
"cross-env": "7.0.3",
"electron": "^26.3.0",
"electron-log": "^5.0.0-beta.29",
@ -58,15 +59,17 @@
"esbuild": "^0.19.4",
"fs-extra": "^11.1.1",
"glob": "^10.3.5",
"jotai": "^2.4.2",
"jotai": "^2.4.3",
"lodash-es": "^4.17.21",
"rxjs": "^7.8.1",
"semver": "^7.5.4",
"tinykeys": "^2.1.0",
"ts-node": "^10.9.1",
"undici": "^5.25.2",
"uuid": "^9.0.1",
"vitest": "0.34.5",
"vitest": "0.34.6",
"which": "^4.0.0",
"zod": "^3.22.4",
"zx": "^7.2.3"
},
"dependencies": {

View File

@ -34,6 +34,7 @@
"@node-rs/crc32": "^1.7.2",
"@node-rs/jsonwebtoken": "^0.2.3",
"@opentelemetry/api": "^1.6.0",
"@opentelemetry/core": "^1.17.0",
"@opentelemetry/instrumentation": "^0.43.0",
"@opentelemetry/instrumentation-graphql": "^0.35.1",
"@opentelemetry/instrumentation-http": "^0.43.0",
@ -59,7 +60,7 @@
"lodash-es": "^4.17.21",
"nanoid": "^4.0.2",
"nestjs-throttler-storage-redis": "^0.4.1",
"next-auth": "4.23.1",
"next-auth": "^4.23.2",
"nodemailer": "^6.9.5",
"on-headers": "^1.0.2",
"parse-duration": "^1.1.0",

View File

@ -9,6 +9,7 @@
"dependencies": {
"@affine/component": "workspace:*",
"@affine/i18n": "workspace:*",
"@mui/material": "^5.14.12",
"@storybook/addon-actions": "^7.4.4",
"@storybook/addon-essentials": "^7.4.4",
"@storybook/addon-interactions": "^7.4.4",
@ -16,11 +17,11 @@
"@storybook/addon-storysource": "^7.4.4",
"@storybook/blocks": "^7.4.4",
"@storybook/builder-vite": "^7.4.4",
"@storybook/jest": "^0.2.2",
"@storybook/jest": "^0.2.3",
"@storybook/react": "^7.4.4",
"@storybook/react-vite": "^7.4.4",
"@storybook/test-runner": "^0.13.0",
"@storybook/testing-library": "^0.2.1",
"@storybook/testing-library": "^0.2.2",
"@vitejs/plugin-react": "^4.0.4",
"concurrently": "^8.2.1",
"jest-mock": "^29.7.0",
@ -35,20 +36,24 @@
"@blocksuite/blocks": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/editor": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/icons": "^2.1.33",
"@blocksuite/icons": "2.1.34",
"@blocksuite/lit": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"@dnd-kit/sortable": "^7.0.2",
"@tomfreudenberg/next-auth-mock": "^0.5.6",
"chromatic": "^7.2.0",
"foxact": "^0.2.20",
"jotai": "^2.4.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-router-dom": "^6.16.0",
"storybook-addon-react-router-v6": "^2.0.7"
},
"peerDependencies": {
"@blocksuite/blocks": "*",
"@blocksuite/editor": "*",
"@blocksuite/global": "*",
"@blocksuite/icons": "*",
"@blocksuite/icons": "2.1.34",
"@blocksuite/lit": "*",
"@blocksuite/store": "*"
},

View File

@ -112,11 +112,11 @@
"string-width": "^5.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite": "^4.4.11",
"vite-plugin-istanbul": "^5.0.0",
"vite-plugin-static-copy": "^0.17.0",
"vite-tsconfig-paths": "^4.2.1",
"vitest": "0.34.5",
"vitest": "0.34.6",
"vitest-fetch-mock": "^0.2.2",
"vitest-mock-extended": "^1.2.1"
},
@ -177,7 +177,6 @@
"unbox-primitive": "npm:@nolyfill/unbox-primitive@latest",
"which-boxed-primitive": "npm:@nolyfill/which-boxed-primitive@latest",
"which-typed-array": "npm:@nolyfill/which-typed-array@latest",
"next-auth@^4.23.1": "patch:next-auth@npm%3A4.23.1#./.yarn/patches/next-auth-npm-4.23.1-6ed6a0f727.patch",
"next-auth@4.23.1": "patch:next-auth@npm%3A4.23.1#./.yarn/patches/next-auth-npm-4.23.1-6ed6a0f727.patch"
"next-auth@^4.23.2": "patch:next-auth@npm%3A4.23.2#./.yarn/patches/next-auth-npm-4.23.2-5f0e551bc7.patch"
}
}

View File

@ -12,10 +12,12 @@
"devDependencies": {
"@clack/core": "^0.3.3",
"@clack/prompts": "^0.7.0",
"@magic-works/i18n-codegen": "^0.5.0",
"ts-node": "^10.9.1"
},
"dependencies": {
"dotenv": "^16.3.1"
"dotenv": "^16.3.1",
"vite": "^4.4.11"
},
"peerDependencies": {
"ts-node": "*"

View File

@ -11,12 +11,13 @@
"@blocksuite/blocks": "*",
"@blocksuite/editor": "*",
"@blocksuite/global": "*",
"@blocksuite/icons": "*",
"@blocksuite/icons": "2.1.34",
"@blocksuite/lit": "*",
"@blocksuite/store": "*"
},
"dependencies": {
"@affine/debug": "workspace:*",
"@affine/graphql": "workspace:*",
"@affine/i18n": "workspace:*",
"@affine/workspace": "workspace:*",
"@dnd-kit/core": "^6.0.8",
@ -28,7 +29,7 @@
"@emotion/styled": "^11.11.0",
"@mui/base": "5.0.0-beta.13",
"@mui/icons-material": "^5.14.7",
"@mui/material": "^5.14.7",
"@mui/material": "^5.14.12",
"@popperjs/core": "^2.11.8",
"@radix-ui/react-avatar": "^1.0.3",
"@radix-ui/react-collapsible": "^1.0.3",
@ -42,32 +43,43 @@
"check-password-strength": "^2.0.7",
"clsx": "^2.0.0",
"dayjs": "^1.11.10",
"jotai": "^2.4.2",
"foxact": "^0.2.20",
"jotai": "^2.4.3",
"lit": "^2.8.0",
"lodash": "^4.17.21",
"lottie-react": "^2.4.0",
"lottie-web": "^5.12.2",
"nanoid": "^5.0.1",
"next-themes": "^0.2.1",
"react": "18.2.0",
"react-datepicker": "^4.18.0",
"react-dom": "18.2.0",
"react-error-boundary": "^4.0.11",
"react-is": "^18.2.0",
"react-paginate": "^8.2.0",
"rxjs": "^7.8.1"
"react-router-dom": "^6.16.0",
"rxjs": "^7.8.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@blocksuite/blocks": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/editor": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/icons": "^2.1.33",
"@blocksuite/icons": "2.1.34",
"@blocksuite/lit": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"@storybook/jest": "^0.2.3",
"@storybook/testing-library": "^0.2.2",
"@testing-library/react": "^14.0.0",
"@types/react": "^18.2.22",
"@types/react-datepicker": "^4.15.0",
"@types/react-dnd": "^3.0.2",
"@types/react-dom": "^18.2.7",
"@vanilla-extract/css": "^1.13.0",
"fake-indexeddb": "^4.0.2",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite": "^4.4.11",
"vitest": "0.34.6",
"yjs": "^13.6.8"
},
"version": "0.9.0-canary.13"

View File

@ -1,4 +1,3 @@
import { FlexWrapper } from '@affine/component';
import type { Collection, Filter } from '@affine/env/filter';
import type { PropertiesMeta } from '@affine/env/filter';
import type { GetPageInfoById } from '@affine/env/page-info';
@ -11,6 +10,7 @@ import clsx from 'clsx';
import type { MouseEvent } from 'react';
import { useCallback, useState } from 'react';
import { FlexWrapper } from '../../../ui/layout';
import { CreateFilterMenu } from '../filter/vars';
import type { useCollectionManager } from '../use-collection-manager';
import * as styles from './collection-list.css';

View File

@ -1,4 +1,3 @@
import { RadioButton, RadioButtonGroup, Switch } from '@affine/component';
import { WorkspaceFlavour } from '@affine/env/workspace';
import { useAFFiNEI18N } from '@affine/i18n/hooks';
import { ArrowRightSmallIcon, WebIcon } from '@blocksuite/icons';
@ -7,7 +6,9 @@ import { Menu, MenuItem, MenuTrigger } from '@toeverything/components/menu';
import { useState } from 'react';
import { useCallback } from 'react';
import { RadioButton, RadioButtonGroup } from '../../ui/button';
import Input from '../../ui/input';
import { Switch } from '../../ui/switch';
import { toast } from '../../ui/toast';
import { PublicLinkDisableModal } from './disable-public-link';
import * as styles from './index.css';

View File

@ -6,7 +6,8 @@
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.9"
"@types/debug": "^4.1.9",
"vitest": "0.34.6"
},
"version": "0.9.0-canary.13"
}

View File

@ -8,7 +8,8 @@
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"react": "18.2.0",
"react-dom": "18.2.0",
"zod": "^3.22.2"
"vitest": "0.34.6",
"zod": "^3.22.4"
},
"exports": {
"./automation": "./src/automation.ts",

View File

@ -16,7 +16,8 @@
"@graphql-codegen/typescript-operations": "^4.0.1",
"@types/lodash-es": "^4.17.9",
"lodash-es": "^4.17.21",
"prettier": "^3.0.3"
"prettier": "^3.0.3",
"vitest": "0.34.6"
},
"scripts": {
"postinstall": "gql-gen"

View File

@ -7,7 +7,10 @@
"private": true,
"dependencies": {
"foxact": "^0.2.20",
"lodash.debounce": "^4.0.8"
"jotai": "^2.4.3",
"lodash.debounce": "^4.0.8",
"react": "18.2.0",
"swr": "2.2.0"
},
"devDependencies": {
"@affine/env": "workspace:*",
@ -18,7 +21,10 @@
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/lit": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"@types/lodash.debounce": "^4.0.7"
"@testing-library/react": "^14.0.0",
"@types/lodash.debounce": "^4.0.7",
"fake-indexeddb": "^4.0.2",
"vitest": "0.34.6"
},
"peerDependencies": {
"@affine/y-provider": "workspace:*",

View File

@ -58,18 +58,23 @@
"@blocksuite/blocks": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"jotai": "^2.4.2",
"jotai": "^2.4.3",
"tinykeys": "^2.1.0",
"zod": "^3.22.2"
"zod": "^3.22.4"
},
"devDependencies": {
"@affine-test/fixtures": "workspace:*",
"@blocksuite/editor": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/lit": "0.0.0-20230926212737-6d4b1569-nightly",
"@testing-library/react": "^14.0.0",
"async-call-rpc": "^6.3.1",
"electron": "link:../../apps/electron/node_modules/electron",
"nanoid": "^5.0.1",
"react": "^18.2.0",
"vite": "^4.4.9",
"rxjs": "^7.8.1",
"vite": "^4.4.11",
"vite-plugin-dts": "3.5.4",
"vitest": "0.34.6",
"yjs": "^13.6.8"
},
"peerDependencies": {

View File

@ -26,11 +26,11 @@
"@blocksuite/blocks": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/global": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"jotai": "^2.4.2",
"zod": "^3.22.2"
"jotai": "^2.4.3",
"zod": "^3.22.4"
},
"devDependencies": {
"vite": "^4.4.9",
"vite": "^4.4.11",
"vite-plugin-dts": "3.5.4"
}
}

View File

@ -24,20 +24,26 @@
"@toeverything/hooks": "workspace:*",
"@toeverything/y-indexeddb": "workspace:*",
"async-call-rpc": "^6.3.1",
"jotai": "^2.4.2",
"jotai": "^2.4.3",
"js-base64": "^3.7.5",
"ky": "^1.0.1",
"lib0": "^0.2.85",
"nanoid": "^5.0.1",
"next-auth": "^4.23.2",
"react": "18.2.0",
"react-dom": "18.2.0",
"socket.io-client": "^4.7.2",
"swr": "2.2.0",
"valtio": "^1.11.2",
"y-protocols": "^1.0.6",
"yjs": "^13.6.8",
"zod": "^3.22.2"
"zod": "^3.22.4"
},
"devDependencies": {
"@testing-library/react": "^14.0.0",
"@types/ws": "^8.5.5",
"fake-indexeddb": "^4.0.2",
"vitest": "0.34.6",
"ws": "^8.14.2"
},
"version": "0.9.0-canary.13"

View File

@ -34,14 +34,17 @@
}
},
"dependencies": {
"idb": "^7.1.1"
"idb": "^7.1.1",
"nanoid": "^5.0.1"
},
"devDependencies": {
"@affine/y-provider": "workspace:*",
"@blocksuite/blocks": "0.0.0-20230926212737-6d4b1569-nightly",
"@blocksuite/store": "0.0.0-20230926212737-6d4b1569-nightly",
"vite": "^4.4.9",
"fake-indexeddb": "^4.0.2",
"vite": "^4.4.11",
"vite-plugin-dts": "3.5.4",
"vitest": "0.34.6",
"y-indexeddb": "^9.0.11"
},
"peerDependencies": {

View File

@ -16,18 +16,21 @@
"dependencies": {
"@affine/component": "workspace:*",
"@affine/sdk": "workspace:*",
"@blocksuite/icons": "2.1.34",
"@toeverything/components": "^0.0.43",
"@vanilla-extract/css": "^1.13.0",
"clsx": "^2.0.0",
"idb": "^7.1.1",
"langchain": "^0.0.138",
"marked": "^9.0.3",
"marked-gfm-heading-id": "^3.1.0",
"marked-mangle": "^1.1.4",
"zod": "^3.22.2"
"zod": "^3.22.4"
},
"devDependencies": {
"@affine/plugin-cli": "workspace:*",
"@types/marked": "^5.0.1",
"jotai": "^2.4.2",
"jotai": "^2.4.3",
"react": "18.2.0",
"react-dom": "18.2.0"
},

View File

@ -17,7 +17,7 @@
"dependencies": {
"@affine/component": "workspace:*",
"@affine/sdk": "workspace:*",
"@blocksuite/icons": "^2.1.33",
"@blocksuite/icons": "2.1.34",
"@toeverything/components": "^0.0.43"
},
"devDependencies": {

View File

@ -16,7 +16,7 @@
"dependencies": {
"@affine/component": "workspace:*",
"@affine/sdk": "workspace:*",
"@blocksuite/icons": "^2.1.33",
"@blocksuite/icons": "2.1.34",
"@toeverything/components": "^0.0.43",
"@toeverything/theme": "^0.7.18",
"clsx": "^2.0.0",

View File

@ -17,12 +17,12 @@
"dependencies": {
"@affine/component": "workspace:*",
"@affine/sdk": "workspace:*",
"@blocksuite/icons": "^2.1.33",
"@blocksuite/icons": "2.1.34",
"@toeverything/components": "^0.0.43"
},
"devDependencies": {
"@affine/plugin-cli": "workspace:*",
"jotai": "^2.4.2",
"jotai": "^2.4.3",
"react": "18.2.0",
"react-dom": "18.2.0"
}

507
yarn.lock

File diff suppressed because it is too large Load Diff