@rxap/plugin-nestjs 16.1.0-dev.23 → 16.1.0-dev.24
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
|
@@ -3,6 +3,12 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [16.1.0-dev.24](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.23...@rxap/plugin-nestjs@16.1.0-dev.24) (2023-09-18)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- update service status name ([238353c](https://gitlab.com/rxap/packages/commit/238353c821f25268af93599756406e73431fca21))
|
|
11
|
+
|
|
6
12
|
# [16.1.0-dev.23](https://gitlab.com/rxap/packages/compare/@rxap/plugin-nestjs@16.1.0-dev.22...@rxap/plugin-nestjs@16.1.0-dev.23) (2023-09-12)
|
|
7
13
|
|
|
8
14
|
### Bug Fixes
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "16.1.0-dev.
|
|
2
|
+
"version": "16.1.0-dev.24",
|
|
3
3
|
"name": "@rxap/plugin-nestjs",
|
|
4
4
|
"license": "GPL-3.0-or-later",
|
|
5
5
|
"dependencies": {
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
},
|
|
81
81
|
"schematics": "./generators.json",
|
|
82
82
|
"type": "commonjs",
|
|
83
|
-
"gitHead": "
|
|
83
|
+
"gitHead": "8e5bb2af7e10b3d95fb081c203cc4d5fff8da632",
|
|
84
84
|
"main": "./src/index.js",
|
|
85
85
|
"types": "./src/index.d.ts"
|
|
86
86
|
}
|
|
@@ -519,7 +519,7 @@ function initApplicationGenerator(tree, options) {
|
|
|
519
519
|
if (!itemList.find(i => i.name === 'STATUS_SERVICE_BASE_URL')) {
|
|
520
520
|
itemList.push({
|
|
521
521
|
name: 'STATUS_SERVICE_BASE_URL',
|
|
522
|
-
defaultValue: `environment.production ? 'http://rxap-status
|
|
522
|
+
defaultValue: `environment.production ? 'http://rxap-service-status:3000' : 'http://localhost:5300'`,
|
|
523
523
|
});
|
|
524
524
|
}
|
|
525
525
|
(0, ts_morph_1.CoerceImports)(configSourceFile, {
|