forked from github/plane
image can't be inserted inside table (#2904)
* image can't be inserted inside table Now we've diabled image icon from showing up if the cursor is inside a table node or if a table cell is selected * added drag drop support for document editor * fixed missing dependencies
This commit is contained in:
committed by
sriram veeraghanta
parent
041c3af35a
commit
10cde58363
29
turbo.json
29
turbo.json
@@ -22,8 +22,13 @@
|
||||
],
|
||||
"pipeline": {
|
||||
"build": {
|
||||
"dependsOn": ["^build"],
|
||||
"outputs": [".next/**", "dist/**"]
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": [
|
||||
".next/**",
|
||||
"dist/**"
|
||||
]
|
||||
},
|
||||
"web#develop": {
|
||||
"cache": false,
|
||||
@@ -65,20 +70,32 @@
|
||||
},
|
||||
"@plane/lite-text-editor#build": {
|
||||
"cache": true,
|
||||
"dependsOn": ["@plane/editor-core#build"]
|
||||
"dependsOn": [
|
||||
"@plane/editor-core#build",
|
||||
"@plane/editor-extensions#build",
|
||||
"@plane/editor-types#build"
|
||||
]
|
||||
},
|
||||
"@plane/rich-text-editor#build": {
|
||||
"cache": true,
|
||||
"dependsOn": ["@plane/editor-core#build"]
|
||||
"dependsOn": [
|
||||
"@plane/editor-core#build",
|
||||
"@plane/editor-extensions#build",
|
||||
"@plane/editor-types#build"
|
||||
]
|
||||
},
|
||||
"@plane/document-editor#build": {
|
||||
"cache": true,
|
||||
"dependsOn": [
|
||||
"@plane/editor-core#build"
|
||||
"@plane/editor-core#build",
|
||||
"@plane/editor-extensions#build",
|
||||
"@plane/editor-types#build"
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"dependsOn": ["^build"],
|
||||
"dependsOn": [
|
||||
"^build"
|
||||
],
|
||||
"outputs": []
|
||||
},
|
||||
"lint": {
|
||||
|
||||
Reference in New Issue
Block a user