Skip to content

Commit

Permalink
install dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
e11sy committed Aug 29, 2024
1 parent 530b09d commit 3c9238b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions packages/core/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"experimentalDecorators": true,
"types": ["jest"],
"rootDir": "src",
"outDir": "dist",
"noEmit": true,
"allowImportingTsExtensions": true,
"outDir": "dist"
},
"include": ["src/**/*"],
"exclude": [
Expand Down
1 change: 1 addition & 0 deletions packages/dom-adapters/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
"typescript": "^5.5.4"
},
"dependencies": {
"@editorjs/core": "workspace:^",
"@editorjs/dom": "^1.0.0",
"@editorjs/model": "workspace:^"
}
Expand Down
2 changes: 1 addition & 1 deletion packages/dom-adapters/src/CaretAdapter/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Caret, EditorJSModel, CaretManagerEvents } from '@editorjs/model';
import { getAbsoluteRangeOffset, getBoundaryPointByAbsoluteOffset, useSelectionChange } from '../utils/index';
import { getAbsoluteRangeOffset, getBoundaryPointByAbsoluteOffset, useSelectionChange } from '../utils/index.js';
import type { TextRange } from '@editorjs/model';
import { EventType, IndexBuilder, Index } from '@editorjs/model';
import { isNativeInput } from '@editorjs/dom';
Expand Down
4 changes: 1 addition & 3 deletions packages/dom-adapters/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@
"experimentalDecorators": true,
"types": ["jest"],
"rootDir": "src",
"outDir": "dist",
"noEmit": true,
"allowImportingTsExtensions": true
"outDir": "dist"
},
"include": ["src/**/*"],
"exclude": [
Expand Down
1 change: 1 addition & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -671,6 +671,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "@editorjs/dom-adapters@workspace:packages/dom-adapters"
dependencies:
"@editorjs/core": "workspace:^"
"@editorjs/dom": "npm:^1.0.0"
"@editorjs/model": "workspace:^"
"@jest/globals": "npm:^29.7.0"
Expand Down

0 comments on commit 3c9238b

Please sign in to comment.