Skip to content

Commit

Permalink
fix: 🐛 dep list
Browse files Browse the repository at this point in the history
  • Loading branch information
Saul-Mirone committed Jul 28, 2021
1 parent 7343c01 commit 9730d37
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions packages/utils/package.json
Expand Up @@ -18,6 +18,7 @@
"@milkdown/core": "*"
},
"dependencies": {
"@milkdown/exception": "workspace: *",
"@types/lodash-es": "^4.17.4",
"lodash-es": "^4.17.21",
"tslib": "^2.2.0"
Expand Down
2 changes: 1 addition & 1 deletion packages/utils/src/prose/atom-helper.ts
Expand Up @@ -2,7 +2,7 @@ import type { Attrs } from '@milkdown/core';
import type { Node, Schema, NodeType, MarkType } from 'prosemirror-model';
import type { EditorState } from 'prosemirror-state';
import type { Selection, Transaction } from 'prosemirror-state';
import { getAtomFromSchemaFail } from '../../../core/node_modules/@milkdown/exception/src';
import { getAtomFromSchemaFail } from '@milkdown/exception';

export type Position = {
node: Node;
Expand Down
3 changes: 2 additions & 1 deletion packages/utils/tsconfig.json
Expand Up @@ -7,6 +7,7 @@
"include": ["src"],
"exclude": ["node_modules", "lib"],
"references": [
{ "path": "../core" }
{ "path": "../core" },
{ "path": "../exception" }
]
}
2 changes: 2 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9730d37

Please sign in to comment.