@dunx/testing 3.0.0 → 3.0.1

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -1
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -90,9 +90,9 @@ import {
90
90
  readControllers
91
91
  } from "@dunx/core";
92
92
  import {
93
- discoverRoutes,
94
93
  HttpFactory
95
94
  } from "@dunx/http";
95
+ import { discoverRoutes } from "@dunx/http/internal";
96
96
  var middlewareShaped = (ctor) => typeof ctor.prototype?.handle === "function";
97
97
  var declaredMiddleware = (modules) => {
98
98
  const found = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dunx/testing",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "Test harness for dunx apps: a container with providers replaced in place, and a real Bun.serve on port 0",
5
5
  "keywords": [
6
6
  "bun",
@@ -51,8 +51,8 @@
51
51
  "@dunx/http": "workspace:*"
52
52
  },
53
53
  "peerDependencies": {
54
- "@dunx/core": "^3.0.0",
55
- "@dunx/http": "^3.0.0",
54
+ "@dunx/core": "^3.0.1",
55
+ "@dunx/http": "^3.0.1",
56
56
  "@types/bun": ">=1.3.0"
57
57
  },
58
58
  "peerDependenciesMeta": {