refactor(server): switch to esbuild

This commit is contained in:
Elian Doran 2025-05-21 13:30:46 +03:00
parent 4f5aaf05b1
commit afb3918571
No known key found for this signature in database

View File

@ -105,21 +105,13 @@
"tmp": "0.2.3", "tmp": "0.2.3",
"turndown": "7.2.0", "turndown": "7.2.0",
"unescape": "1.0.1", "unescape": "1.0.1",
"webpack": "5.99.9",
"ws": "8.18.2", "ws": "8.18.2",
"xml2js": "0.6.2", "xml2js": "0.6.2",
"yauzl": "3.2.0", "yauzl": "3.2.0"
"copy-webpack-plugin": "13.0.0"
}, },
"nx": { "nx": {
"name": "server", "name": "server",
"targets": { "targets": {
"build": {
"dependsOn": [
"^build",
"client:build"
]
},
"serve": { "serve": {
"executor": "@nx/js:node", "executor": "@nx/js:node",
"defaultConfiguration": "development", "defaultConfiguration": "development",
@ -183,7 +175,46 @@
"command": "docker run -p 8081:8080 triliumnext-alpine" "command": "docker run -p 8081:8080 triliumnext-alpine"
} }
} }
},
"build": {
"executor": "@nx/esbuild:esbuild",
"outputs": [
"{options.outputPath}"
],
"defaultConfiguration": "production",
"options": {
"main": "apps/server/src/main.ts",
"outputPath": "apps/server/dist",
"outputFileName": "main.js",
"tsConfig": "apps/server/tsconfig.app.json",
"platform": "node",
"format": [
"esm"
],
"declarationRootDir": "apps/server/src"
},
"configurations": {
"development": {
"minify": false
},
"production": {
"minify": true
} }
} }
} }
} }
},
"exports": {
"./package.json": "./package.json",
".": {
"development": "./src/main.ts",
"types": "./dist/main.d.ts",
"import": "./dist/main.js",
"default": "./dist/main.js"
}
},
"types": "./dist/main.d.ts",
"module": "./dist/main.js",
"type": "module",
"main": "./dist/main.js"
}