mirror of
https://github.com/zadam/trilium.git
synced 2025-10-29 01:06:36 +01:00
refactor(server): separate build config for serve
This commit is contained in:
@@ -116,7 +116,7 @@
|
|||||||
"executor": "@nx/js:node",
|
"executor": "@nx/js:node",
|
||||||
"defaultConfiguration": "development",
|
"defaultConfiguration": "development",
|
||||||
"dependsOn": [
|
"dependsOn": [
|
||||||
"build"
|
"build-without-client"
|
||||||
],
|
],
|
||||||
"options": {
|
"options": {
|
||||||
"buildTarget": "server:build",
|
"buildTarget": "server:build",
|
||||||
@@ -124,7 +124,7 @@
|
|||||||
},
|
},
|
||||||
"configurations": {
|
"configurations": {
|
||||||
"development": {
|
"development": {
|
||||||
"buildTarget": "server:build:development"
|
"buildTarget": "server:build-without-client"
|
||||||
},
|
},
|
||||||
"production": {
|
"production": {
|
||||||
"buildTarget": "server:build:production"
|
"buildTarget": "server:build:production"
|
||||||
@@ -176,7 +176,7 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"build": {
|
"build-without-client": {
|
||||||
"executor": "@nx/esbuild:esbuild",
|
"executor": "@nx/esbuild:esbuild",
|
||||||
"outputs": [
|
"outputs": [
|
||||||
"{options.outputPath}"
|
"{options.outputPath}"
|
||||||
@@ -220,6 +220,12 @@
|
|||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"dependsOn": [
|
||||||
|
"client:build",
|
||||||
|
"build"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user