@stacksjs/error-handling 0.59.9 → 0.59.10

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/dist/index.js CHANGED
@@ -363,7 +363,7 @@ var require_index_cjs = __commonJS((exports) => {
363
363
  });
364
364
 
365
365
  // src/handler.ts
366
- import {logsPath} from "@stacksjs/path";
366
+ import {dirname, logsPath} from "@stacksjs/path";
367
367
  import {fs} from "@stacksjs/storage";
368
368
  function handleError(err, options) {
369
369
  return ErrorHandler.handle(err, options);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/error-handling",
3
3
  "type": "module",
4
- "version": "0.59.9",
4
+ "version": "0.59.10",
5
5
  "description": "Type safe error handling.",
6
6
  "author": "Chris Breuer",
7
7
  "license": "MIT",
package/src/handler.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { logsPath } from '@stacksjs/path'
1
+ import { dirname, logsPath } from '@stacksjs/path'
2
2
  import { fs } from '@stacksjs/storage'
3
3
 
4
4
  interface ErrorOptions {