@stacksjs/path 0.70.10 → 0.70.11
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 +3 -3
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
// @bun
|
|
2
2
|
// src/index.ts
|
|
3
|
-
import os from "os";
|
|
3
|
+
import os from "node:os";
|
|
4
4
|
import {
|
|
5
5
|
basename,
|
|
6
6
|
delimiter,
|
|
@@ -14,8 +14,8 @@ import {
|
|
|
14
14
|
resolve,
|
|
15
15
|
sep,
|
|
16
16
|
toNamespacedPath
|
|
17
|
-
} from "path";
|
|
18
|
-
import process from "process";
|
|
17
|
+
} from "node:path";
|
|
18
|
+
import process from "node:process";
|
|
19
19
|
import { log } from "@stacksjs/logging";
|
|
20
20
|
function actionsPath(path) {
|
|
21
21
|
return corePath(`actions/${path || ""}`);
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksjs/path",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.70.
|
|
4
|
+
"version": "0.70.11",
|
|
5
5
|
"description": "The Stacks path.",
|
|
6
6
|
"author": "Chris Breuer",
|
|
7
7
|
"contributors": ["Chris Breuer <chris@stacksjs.org>"],
|
|
@@ -31,6 +31,6 @@
|
|
|
31
31
|
"prepublishOnly": "bun run build"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@stacksjs/development": "0.70.
|
|
34
|
+
"@stacksjs/development": "0.70.10"
|
|
35
35
|
}
|
|
36
36
|
}
|