depository-deploy 1.2.3 → 1.2.4
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.
- package/install/templates/web.config +12 -0
- package/package.json +4 -4
|
@@ -99,5 +99,17 @@
|
|
|
99
99
|
<!-- ── Error handling ────────────────────────────────────── -->
|
|
100
100
|
<httpErrors existingResponse="PassThrough" />
|
|
101
101
|
|
|
102
|
+
<!-- ── Authentication — override server-level defaults ──── -->
|
|
103
|
+
<!-- Explicitly allow anonymous and disable all challenge-based -->
|
|
104
|
+
<!-- auth so IIS never pops a browser credential dialog. -->
|
|
105
|
+
<security>
|
|
106
|
+
<authentication>
|
|
107
|
+
<anonymousAuthentication enabled="true" />
|
|
108
|
+
<windowsAuthentication enabled="false" />
|
|
109
|
+
<basicAuthentication enabled="false" />
|
|
110
|
+
<digestAuthentication enabled="false" />
|
|
111
|
+
</authentication>
|
|
112
|
+
</security>
|
|
113
|
+
|
|
102
114
|
</system.webServer>
|
|
103
115
|
</configuration>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "depository-deploy",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.4",
|
|
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.2.
|
|
29
|
-
"depository-deploy-macos": "1.2.
|
|
30
|
-
"depository-deploy-windows": "1.2.
|
|
28
|
+
"depository-deploy-linux": "1.2.4",
|
|
29
|
+
"depository-deploy-macos": "1.2.4",
|
|
30
|
+
"depository-deploy-windows": "1.2.4"
|
|
31
31
|
},
|
|
32
32
|
"scripts": {
|
|
33
33
|
"start": "node wizard-server.mjs"
|