feat(core): allow core modules to import itself (#5207)

This commit is contained in:
Peng Xiao
2023-12-06 08:45:54 +00:00
parent e0cada49f5
commit 2b53430539
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@
"./router": "./src/router.ts",
"./bootstrap/setup": "./src/bootstrap/setup.ts",
"./bootstrap/register-plugins": "./src/bootstrap/register-plugins.ts",
"./components/pure/*": "./src/components/pure/*/index.tsx"
"./*": "./src/*"
},
"dependencies": {
"@affine-test/fixtures": "workspace:*",

View File

@@ -1,5 +1,6 @@
import { Avatar } from '@affine/component/ui/avatar';
import { Tooltip } from '@affine/component/ui/tooltip';
import { useCurrentSyncEngine } from '@affine/core/hooks/current/use-current-sync-engine';
import { WorkspaceFlavour } from '@affine/env/workspace';
import {
type SyncEngineStatus,
@@ -24,7 +25,6 @@ import {
useState,
} from 'react';
import { useCurrentSyncEngine } from '../../../../hooks/current/use-current-sync-engine';
import { useSystemOnline } from '../../../../hooks/use-system-online';
import type { AllWorkspace } from '../../../../shared';
import { Loading } from './loading-icon';