42 lines
1017 B
Diff
42 lines
1017 B
Diff
From 7d920561d4d435dd01604bc9326188205ff3ae36 Mon Sep 17 00:00:00 2001
|
|
From: Fabrice <fabrice.roublot@workstreams.ch>
|
|
Date: Tue, 28 Jan 2025 13:27:43 +0100
|
|
Subject: [PATCH] fix package.js on server
|
|
|
|
---
|
|
package.json | 6 +++---
|
|
1 file changed, 3 insertions(+), 3 deletions(-)
|
|
|
|
diff --git a/package.json b/package.json
|
|
index 00506422..f3f023a3 100644
|
|
--- a/package.json
|
|
+++ b/package.json
|
|
@@ -8,7 +8,7 @@
|
|
"server": {
|
|
"expand": true,
|
|
"src": [
|
|
- "./**/sources/*.js",
|
|
+ "./**/sources/**/*.js",
|
|
"./Common/package.json",
|
|
"./DocService/package.json",
|
|
"./DocService/public/healthcheck.docx",
|
|
@@ -43,7 +43,7 @@
|
|
},
|
|
"postprocess": {
|
|
"src": [
|
|
- "./build/server/**/sources/*.js"
|
|
+ "./build/server/**/sources/**/*.js"
|
|
],
|
|
"dest": "./"
|
|
},
|
|
@@ -96,4 +96,4 @@
|
|
"3d-party-lic-report": "run-s 3d-party-lic-md-header 3d-party-lic-report:*",
|
|
"build": "run-p install:*"
|
|
}
|
|
-}
|
|
+}
|
|
\ No newline at end of file
|
|
--
|
|
2.30.2
|
|
|