[fix] bug with eventemitter3 default export (#1818)
This PR switches from the default export to a named export in event emitter 3. Should close https://github.com/tldraw/tldraw/issues/1817. ### Change Type - [x] `patch` — Bug fix ### Test Plan 1. Hard to test ahead of time, but try [this reproduction](https://stackblitz.com/edit/github-6vmn42?file=src%2FEditor.jsx,src%2Fpages%2Findex.astro,package.json&on=stackblitz) with the new version. ### Release Notes - [@tldraw/editor] updates eventemitter3 import to fix issue with Astro builds.
This commit is contained in:
parent
2c7c97af9c
commit
df9f4254c4
2 changed files with 2 additions and 2 deletions
|
@ -15,7 +15,7 @@ import { computed } from '@tldraw/state';
|
||||||
import { ComputedCache } from '@tldraw/store';
|
import { ComputedCache } from '@tldraw/store';
|
||||||
import { EmbedDefinition } from '@tldraw/tlschema';
|
import { EmbedDefinition } from '@tldraw/tlschema';
|
||||||
import { EMPTY_ARRAY } from '@tldraw/state';
|
import { EMPTY_ARRAY } from '@tldraw/state';
|
||||||
import EventEmitter from 'eventemitter3';
|
import { EventEmitter } from 'eventemitter3';
|
||||||
import { HistoryEntry } from '@tldraw/store';
|
import { HistoryEntry } from '@tldraw/store';
|
||||||
import { HTMLProps } from 'react';
|
import { HTMLProps } from 'react';
|
||||||
import { JsonObject } from '@tldraw/utils';
|
import { JsonObject } from '@tldraw/utils';
|
||||||
|
|
|
@ -52,7 +52,7 @@ import {
|
||||||
sortById,
|
sortById,
|
||||||
structuredClone,
|
structuredClone,
|
||||||
} from '@tldraw/utils'
|
} from '@tldraw/utils'
|
||||||
import EventEmitter from 'eventemitter3'
|
import { EventEmitter } from 'eventemitter3'
|
||||||
import { TLUser, createTLUser } from '../config/createTLUser'
|
import { TLUser, createTLUser } from '../config/createTLUser'
|
||||||
import { checkShapesAndAddCore } from '../config/defaultShapes'
|
import { checkShapesAndAddCore } from '../config/defaultShapes'
|
||||||
import {
|
import {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue