fix: editor cannot directly import (#995)

This commit is contained in:
Himself65
2023-02-14 10:43:26 -06:00
committed by GitHub
parent 8dac464b61
commit 2196379798
3 changed files with 7 additions and 14 deletions
+2 -12
View File
@@ -61,6 +61,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: artifact
path: ./apps/web/.next
lint:
@@ -79,17 +80,6 @@ jobs:
node-version: 18.x
cache: 'pnpm'
- name: Restore cache
uses: actions/cache@v3
with:
path: |
.next/cache
# Generate a new cache whenever packages or source files change.
key: ${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
# If source files changed but packages didn't, rebuild from a prior cache.
restore-keys: |
${{ runner.os }}-nextjs-${{ hashFiles('**/pnpm-lock.yaml') }}-
- name: Install dependencies
run: pnpm install
@@ -97,7 +87,7 @@ jobs:
uses: actions/download-artifact@v3
with:
name: artifact
path: apps/web/.next/
path: ./apps/web/.next
- name: Lint & E2E Test & Unit Test
run: |
+1 -1
View File
@@ -1,4 +1,4 @@
export * from './components/BlockSuiteEditor';
// export * from './components/BlockSuiteEditor';
export * from './ui/breadcrumbs';
export * from './ui/button';
export * from './ui/confirm';
@@ -2,7 +2,10 @@
import React, { Suspense } from 'react';
import { Meta, Story } from '@storybook/react';
import { builtInSchemas } from '@blocksuite/blocks/models';
import { BlockSuiteEditor, BlockSuiteEditorProps } from '..';
import {
BlockSuiteEditor,
BlockSuiteEditorProps,
} from '../components/BlockSuiteEditor';
import { Page, Workspace } from '@blocksuite/store';
const worksapce = new Workspace({