@opra/nestjs-http 1.19.4 → 1.19.7

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.
@@ -61,7 +61,7 @@ class OpraHttpNestjsAdapter extends http_1.HttpAdapter {
61
61
  nestjs_1.OpraNestUtils.copyDecoratorMetadata(newClass, ...parentTree);
62
62
  (0, common_1.Controller)()(newClass);
63
63
  const newPath = metadata.path
64
- ? node_path_1.default.join(currentPath, metadata.path)
64
+ ? node_path_1.default.posix.join(currentPath, metadata.path)
65
65
  : currentPath;
66
66
  const adapter = this;
67
67
  // adapter.logger =
@@ -58,7 +58,7 @@ export class OpraHttpNestjsAdapter extends HttpAdapter {
58
58
  OpraNestUtils.copyDecoratorMetadata(newClass, ...parentTree);
59
59
  Controller()(newClass);
60
60
  const newPath = metadata.path
61
- ? nodePath.join(currentPath, metadata.path)
61
+ ? nodePath.posix.join(currentPath, metadata.path)
62
62
  : currentPath;
63
63
  const adapter = this;
64
64
  // adapter.logger =
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@opra/nestjs-http",
3
- "version": "1.19.4",
3
+ "version": "1.19.7",
4
4
  "description": "Opra NestJS Http Module",
5
5
  "author": "Panates",
6
6
  "license": "MIT",
7
7
  "dependencies": {
8
- "@jsopen/objects": "^2.0.1",
8
+ "@jsopen/objects": "^2.0.2",
9
9
  "tslib": "^2.8.1"
10
10
  },
11
11
  "peerDependencies": {
12
- "@opra/common": "^1.19.4",
13
- "@opra/core": "^1.19.4",
14
- "@opra/nestjs": "^1.19.4",
15
- "@opra/http": "^1.19.4",
12
+ "@opra/common": "^1.19.7",
13
+ "@opra/core": "^1.19.7",
14
+ "@opra/nestjs": "^1.19.7",
15
+ "@opra/http": "^1.19.7",
16
16
  "@nestjs/common": "^10.0.0 || ^11.0.0",
17
17
  "@nestjs/core": "^10.0.0 || ^11.0.0"
18
18
  },