@jtl-software/cloud-app-template-backend-dotnet 0.0.3 → 0.0.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/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @jtl/cloud-app-template-backend-dotnet
|
|
2
2
|
|
|
3
|
+
## 0.0.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#12](https://github.com/jtl-software/cloud-apps-cli/pull/12) [`3eb5574`](https://github.com/jtl-software/cloud-apps-cli/commit/3eb5574d24ee8485939bc22ce1e9c8be9e343ccc) Thanks [@tobilen](https://github.com/tobilen)! - repair deployment, install all dependencies during npm install step
|
|
8
|
+
|
|
3
9
|
## 0.0.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"commandName": "Project",
|
|
6
6
|
"dotnetRunMessages": true,
|
|
7
7
|
"launchBrowser": false,
|
|
8
|
-
"applicationUrl": "http://localhost:
|
|
8
|
+
"applicationUrl": "http://localhost:3005",
|
|
9
9
|
"environmentVariables": {
|
|
10
10
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
11
11
|
}
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"dotnetRunMessages": true,
|
|
16
16
|
"launchBrowser": true,
|
|
17
17
|
"launchUrl": "swagger",
|
|
18
|
-
"applicationUrl": "http://localhost:
|
|
18
|
+
"applicationUrl": "http://localhost:3005",
|
|
19
19
|
"environmentVariables": {
|
|
20
20
|
"ASPNETCORE_ENVIRONMENT": "Development"
|
|
21
21
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jtl-software/cloud-app-template-backend-dotnet",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -9,11 +9,16 @@
|
|
|
9
9
|
"type": "backend",
|
|
10
10
|
"label": ".NET",
|
|
11
11
|
"hint": "ASP.NET Core + FastEndpoints",
|
|
12
|
+
"runtimeVersions": {
|
|
13
|
+
"nodejs": "22.22.0",
|
|
14
|
+
"dotnet": "8.0.419"
|
|
15
|
+
},
|
|
12
16
|
"extraReplacements": {
|
|
13
17
|
"HelloWorldApp": "{{APP_NAME_PASCAL}}"
|
|
14
18
|
}
|
|
15
19
|
},
|
|
16
20
|
"scripts": {
|
|
21
|
+
"postinstall": "if [ -d '{{APP_NAME_PASCAL}}.Api' ]; then dotnet restore {{APP_NAME_PASCAL}}.Api; fi",
|
|
17
22
|
"dev": "dotnet run --project {{APP_NAME_PASCAL}}.Api",
|
|
18
23
|
"build": "dotnet build {{APP_NAME_PASCAL}}.Api"
|
|
19
24
|
}
|