Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix package referencing #14

Merged
merged 3 commits into from
Aug 17, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/caret/.npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
src

.json
.tsbuildinfo
tsconfig.json
tsconfig.tsbuildinfo
4 changes: 2 additions & 2 deletions packages/caret/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@editorjs/caret",
"description": "Utils useful for work with caret for Editor.js tools development",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"dependencies": {
"@editorjs/dom": "workspace:*"
"@editorjs/dom": "workspace:^"
}
}
3 changes: 0 additions & 3 deletions packages/caret/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,4 @@
},
"include": ["**/*"],
"exclude": ["dist"],
"references": [
{ "path": "../dom" }
]
}
4 changes: 2 additions & 2 deletions packages/dom/.npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
src

.json
.tsbuildinfo
tsconfig.json
tsconfig.tsbuildinfo
4 changes: 2 additions & 2 deletions packages/dom/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@editorjs/dom",
"description": "Utils useful for work with dom for Editor.js tools development",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"dependencies": {
"@editorjs/helpers": "workspace:*"
"@editorjs/helpers": "workspace:^"
}
}
4 changes: 2 additions & 2 deletions packages/helpers/.npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
src

.json
.tsbuildinfo
tsconfig.json
tsconfig.tsbuildinfo
2 changes: 1 addition & 1 deletion packages/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@editorjs/helpers",
"description": "Utils useful for Editor.js tools development",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions packages/keyboard/.npmignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
src

.json
.tsbuildinfo
tsconfig.json
tsconfig.tsbuildinfo
2 changes: 1 addition & 1 deletion packages/keyboard/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@editorjs/keyboard",
"description": "Utils useful for work with keyboard for Editor.js tools development",
"version": "0.0.3",
"version": "0.0.4",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
Expand Down
Loading