depository-deploy 1.0.24 → 1.0.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -222,6 +222,10 @@ if (-not (Test-Path $uiSrc)) {
|
|
|
222
222
|
}
|
|
223
223
|
if (-not (Test-Path $uiSrc)) { Write-Fail "UI folder not found at $ReleaseDir\ui or $(Split-Path -Parent $ReleaseDir)\ui" }
|
|
224
224
|
Copy-Item "$uiSrc\*" (Join-Path $INSTALL_DIR "ui") -Recurse -Force
|
|
225
|
+
$setupSrc = Join-Path $ReleaseDir "setup"
|
|
226
|
+
if (Test-Path $setupSrc) {
|
|
227
|
+
Copy-Item "$setupSrc\*" (Join-Path $INSTALL_DIR "setup") -Recurse -Force
|
|
228
|
+
}
|
|
225
229
|
|
|
226
230
|
# ---- Run centralised database setup & config generation ----
|
|
227
231
|
$SetupExe = Join-Path $INSTALL_DIR "setup\DEPOSITORY.TOOLS.SETUP.exe"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depository-deploy",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.26",
|
|
4
4
|
"description": "Depository document management system – deployment wizard and installers",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"publishConfig": {
|
|
@@ -25,9 +25,9 @@
|
|
|
25
25
|
"scripts/publish.mjs"
|
|
26
26
|
],
|
|
27
27
|
"optionalDependencies": {
|
|
28
|
-
"depository-deploy-linux": "1.0.
|
|
29
|
-
"depository-deploy-macos": "1.0.
|
|
30
|
-
"depository-deploy-windows": "1.0.
|
|
28
|
+
"depository-deploy-linux": "1.0.26",
|
|
29
|
+
"depository-deploy-macos": "1.0.26",
|
|
30
|
+
"depository-deploy-windows": "1.0.26"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"start": "node wizard-server.mjs"
|