@rxap/plugin-angular 16.1.0-dev.60 → 16.1.0-dev.61

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.61](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.60...@rxap/plugin-angular@16.1.0-dev.61) (2023-10-22)
7
+
8
+ ### Bug Fixes
9
+
10
+ - update default Dockerfile ([f5fa480](https://gitlab.com/rxap/packages/commit/f5fa4808b5dd6c2b11e1a7e074bdea314c90a3a6))
11
+
6
12
  # [16.1.0-dev.60](https://gitlab.com/rxap/packages/compare/@rxap/plugin-angular@16.1.0-dev.59...@rxap/plugin-angular@16.1.0-dev.60) (2023-10-20)
7
13
 
8
14
  ### Bug Fixes
package/README.md CHANGED
@@ -19,7 +19,7 @@ yarn add @rxap/plugin-angular
19
19
  ```
20
20
  **Install peer dependencies:**
21
21
  ```bash
22
- yarn add @nx/angular@^16.5.0 @nx/devkit@^16.5.0 @rxap/generator-utilities@^1.1.0-dev.19 @rxap/plugin-localazy@^16.1.0-dev.17 @rxap/plugin-utilities@^16.1.0-dev.22 @rxap/ts-morph@^0.1.0-dev.18 @rxap/utilities@^16.0.0-dev.23 @rxap/workspace-ts-morph@^0.1.0-dev.12 @rxap/workspace-utilities@^0.1.0-dev.24 nx@^16.5.0 ts-morph@^18.0.0 tslib@2.6.2
22
+ yarn add @nx/angular@^16.5.0 @nx/devkit@^16.5.0 @rxap/generator-utilities@^1.1.0-dev.19 @rxap/plugin-localazy@^16.1.0-dev.18 @rxap/plugin-utilities@^16.1.0-dev.22 @rxap/ts-morph@^0.1.0-dev.18 @rxap/utilities@^16.0.0-dev.23 @rxap/workspace-ts-morph@^0.1.0-dev.12 @rxap/workspace-utilities@^0.1.0-dev.24 nx@^16.5.0 ts-morph@^18.0.0 tslib@2.6.2
23
23
  ```
24
24
  **Execute the init generator:**
25
25
  ```bash
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "16.1.0-dev.60",
2
+ "version": "16.1.0-dev.61",
3
3
  "name": "@rxap/plugin-angular",
4
4
  "license": "GPL-3.0-or-later",
5
5
  "dependencies": {
@@ -13,7 +13,7 @@
13
13
  "@nx/angular": "^16.5.0",
14
14
  "@nx/devkit": "^16.5.0",
15
15
  "@rxap/generator-utilities": "^1.1.0-dev.19",
16
- "@rxap/plugin-localazy": "^16.1.0-dev.17",
16
+ "@rxap/plugin-localazy": "^16.1.0-dev.18",
17
17
  "@rxap/plugin-utilities": "^16.1.0-dev.22",
18
18
  "@rxap/ts-morph": "^0.1.0-dev.18",
19
19
  "@rxap/utilities": "^16.0.0-dev.23",
@@ -56,7 +56,7 @@
56
56
  },
57
57
  {
58
58
  "package": "@rxap/plugin-localazy",
59
- "version": "16.1.0-dev.17"
59
+ "version": "16.1.0-dev.18"
60
60
  },
61
61
  {
62
62
  "package": "@rxap/plugin-utilities",
@@ -95,7 +95,7 @@
95
95
  },
96
96
  "schematics": "./generators.json",
97
97
  "type": "commonjs",
98
- "gitHead": "cd7d46158b197afad085ffa396b841cc0d18c4aa",
98
+ "gitHead": "10a9abf266d8579646fdc23b9e8932ff4afbf74f",
99
99
  "main": "./src/index.js",
100
100
  "types": "./src/index.d.ts"
101
101
  }
@@ -3,7 +3,7 @@ FROM registry.gitlab.com/rxap/docker/i18n-nginx:alpine
3
3
  ARG PROJECT_NAME
4
4
  ARG SUB_DOMAIN
5
5
 
6
- RUN if [ -z "$PROJECT_NAME" || -z "$SUB_DOMAIN" ]; then exit 1; else : ; fi
6
+ RUN if [ -z "$PROJECT_NAME" ] || [ -z "$SUB_DOMAIN" ]; then exit 1; fi
7
7
 
8
8
  ENV TRAEFIK_SERVICE_NAME=$PROJECT_NAME
9
9
 
@@ -22,7 +22,7 @@ LABEL traefik.http.services.$TRAEFIK_SERVICE_NAME.loadbalancer.healthCheck.inter
22
22
  LABEL traefik.http.services.$TRAEFIK_SERVICE_NAME.loadbalancer.healthCheck.timeout=$TREAFIK_HEALTH_CHECK_TIMEOUT
23
23
  LABEL traefik.http.services.$TRAEFIK_SERVICE_NAME.loadbalancer.server.port=80
24
24
 
25
- LABEL traefik.http.routers.$TRAEFIK_ROUTER_NAME.rule=Host(`${TRAEFIK_ROUTER_SUB_DOMAIN}${ROOT_DOMAIN}`)
25
+ LABEL traefik.http.routers.$TRAEFIK_ROUTER_NAME.rule=HostRegexp(`${TRAEFIK_ROUTER_SUB_DOMAIN}{domain:.+}`)
26
26
  LABEL traefik.http.routers.$TRAEFIK_ROUTER_NAME.priority=$TRAEFIK_ROUTER_PRIORITY
27
27
  LABEL traefik.http.routers.$TRAEFIK_ROUTER_NAME.service=$TRAEFIK_SERVICE_NAME
28
28