@stacksjs/path 0.70.105 → 0.70.106

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 +2 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1,6 +1,4 @@
1
1
  // @bun
2
- var __require = import.meta.require;
3
-
4
2
  // src/index.ts
5
3
  import { existsSync } from "fs";
6
4
  import os from "os";
@@ -21,7 +19,8 @@ import {
21
19
  import process from "process";
22
20
  async function debugLog(message) {
23
21
  try {
24
- const { log } = await import("@stacksjs/logging");
22
+ const loggingPackage = "@stacksjs/" + "logging";
23
+ const { log } = await import(loggingPackage);
25
24
  log.debug(message);
26
25
  } catch {
27
26
  console.debug(message);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@stacksjs/path",
3
3
  "type": "module",
4
- "version": "0.70.105",
4
+ "version": "0.70.106",
5
5
  "description": "The Stacks path.",
6
6
  "author": "Chris Breuer",
7
7
  "contributors": [