chore(nx/ci):: fix glob

This commit is contained in:
Elian Doran 2025-04-27 10:28:22 +03:00
parent 5560691bea
commit 8f5dc1a1c5
No known key found for this signature in database
2 changed files with 1 additions and 2 deletions

View File

@ -27,7 +27,6 @@
"server:coverage": "npm --workspace=apps/server run coverage", "server:coverage": "npm --workspace=apps/server run coverage",
"server:build": "npm --workspace=apps/server run build:ts", "server:build": "npm --workspace=apps/server run build:ts",
"server:package": "npm run build:packages && npm run client:build && npm --workspace=apps/server run package", "server:package": "npm run build:packages && npm run client:build && npm --workspace=apps/server run package",
"electron-forge:make": "npm run build:packages && npm run client:build && npm --workspace=apps/server run build:prepare-dist && npm --workspace=apps/desktop run electron-forge:make --"
}, },
"devDependencies": { "devDependencies": {
"rimraf": "^6.0.1", "rimraf": "^6.0.1",

View File

@ -36,7 +36,7 @@ function buildFilesToCopy() {
for (const nodePath of nodePaths) { for (const nodePath of nodePaths) {
files.push({ files.push({
from: join("node_modules", nodePath), from: join("..", "..", "node_modules", nodePath),
to: join(outputDir, "node_modules", nodePath) to: join(outputDir, "node_modules", nodePath)
}) })
} }