@remix-run/logger-middleware 0.1.3 → 0.1.5

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.
@@ -1,6 +1,6 @@
1
1
  import type { Middleware } from '@remix-run/fetch-router';
2
2
  /**
3
- * Options for the `logger` middleware.
3
+ * Options for the {@link logger} middleware.
4
4
  */
5
5
  export interface LoggerOptions {
6
6
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@remix-run/logger-middleware",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Middleware for logging HTTP requests and responses",
5
5
  "author": "Michael Jackson <mjijackson@gmail.com>",
6
6
  "license": "MIT",
@@ -28,10 +28,12 @@
28
28
  "devDependencies": {
29
29
  "@types/node": "^24.6.0",
30
30
  "@typescript/native-preview": "7.0.0-dev.20251125.1",
31
- "@remix-run/fetch-router": "0.17.0"
31
+ "@remix-run/fetch-router": "0.18.1",
32
+ "@remix-run/assert": "0.1.0",
33
+ "@remix-run/test": "0.1.0"
32
34
  },
33
35
  "dependencies": {
34
- "@remix-run/fetch-router": "^0.17.0"
36
+ "@remix-run/fetch-router": "^0.18.1"
35
37
  },
36
38
  "keywords": [
37
39
  "fetch",
@@ -44,7 +46,7 @@
44
46
  "scripts": {
45
47
  "build": "tsgo -p tsconfig.build.json",
46
48
  "clean": "git clean -fdX",
47
- "test": "node --disable-warning=ExperimentalWarning --test",
49
+ "test": "remix-test",
48
50
  "typecheck": "tsgo --noEmit"
49
51
  }
50
52
  }
package/src/lib/logger.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import type { Middleware } from '@remix-run/fetch-router'
2
2
 
3
3
  /**
4
- * Options for the `logger` middleware.
4
+ * Options for the {@link logger} middleware.
5
5
  */
6
6
  export interface LoggerOptions {
7
7
  /**