@alextheman/utility 5.11.2 → 5.11.3
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.cjs +1 -1
- package/dist/index.d.cts +3 -3
- package/dist/index.d.ts +3 -3
- package/dist/internal/index.cjs +2 -2
- package/dist/node/index.cjs +1 -1
- package/package.json +10 -10
package/dist/index.cjs
CHANGED
|
@@ -22,7 +22,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
22
22
|
}) : target, mod));
|
|
23
23
|
//#endregion
|
|
24
24
|
let zod = require("zod");
|
|
25
|
-
zod = __toESM(zod);
|
|
25
|
+
zod = __toESM(zod, 1);
|
|
26
26
|
//#region src/root/constants/FILE_PATH_REGEX.ts
|
|
27
27
|
const FILE_PATH_PATTERN = String.raw`(?<directory>.+)[\/\\](?<base>[^\/\\]+)`;
|
|
28
28
|
const FILE_PATH_REGEX = RegExp(`^${FILE_PATH_PATTERN}$`);
|
package/dist/index.d.cts
CHANGED
|
@@ -701,9 +701,9 @@ type OptionalOnCondition<Condition extends boolean, ResolvedTypeIfTrue> = Condit
|
|
|
701
701
|
* @category Types
|
|
702
702
|
*/
|
|
703
703
|
declare const Env: {
|
|
704
|
-
TEST:
|
|
705
|
-
DEVELOPMENT:
|
|
706
|
-
PRODUCTION:
|
|
704
|
+
readonly TEST: "test";
|
|
705
|
+
readonly DEVELOPMENT: "development";
|
|
706
|
+
readonly PRODUCTION: "production";
|
|
707
707
|
};
|
|
708
708
|
type Env = CreateEnumType<typeof Env>;
|
|
709
709
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -701,9 +701,9 @@ type OptionalOnCondition<Condition extends boolean, ResolvedTypeIfTrue> = Condit
|
|
|
701
701
|
* @category Types
|
|
702
702
|
*/
|
|
703
703
|
declare const Env: {
|
|
704
|
-
TEST:
|
|
705
|
-
DEVELOPMENT:
|
|
706
|
-
PRODUCTION:
|
|
704
|
+
readonly TEST: "test";
|
|
705
|
+
readonly DEVELOPMENT: "development";
|
|
706
|
+
readonly PRODUCTION: "production";
|
|
707
707
|
};
|
|
708
708
|
type Env = CreateEnumType<typeof Env>;
|
|
709
709
|
/**
|
package/dist/internal/index.cjs
CHANGED
|
@@ -22,11 +22,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
22
22
|
}) : target, mod));
|
|
23
23
|
//#endregion
|
|
24
24
|
let zod = require("zod");
|
|
25
|
-
zod = __toESM(zod);
|
|
25
|
+
zod = __toESM(zod, 1);
|
|
26
26
|
let execa = require("execa");
|
|
27
27
|
let node_fs_promises = require("node:fs/promises");
|
|
28
28
|
let node_path = require("node:path");
|
|
29
|
-
node_path = __toESM(node_path);
|
|
29
|
+
node_path = __toESM(node_path, 1);
|
|
30
30
|
//#region src/internal/DependencyGroup.ts
|
|
31
31
|
const DependencyGroup = {
|
|
32
32
|
DEPENDENCIES: "dependencies",
|
package/dist/node/index.cjs
CHANGED
|
@@ -22,7 +22,7 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
22
22
|
}) : target, mod));
|
|
23
23
|
//#endregion
|
|
24
24
|
let node_path = require("node:path");
|
|
25
|
-
node_path = __toESM(node_path);
|
|
25
|
+
node_path = __toESM(node_path, 1);
|
|
26
26
|
//#region src/node/functions/normalizeImportPath.ts
|
|
27
27
|
/**
|
|
28
28
|
* Normalizes an import path meant for use in an import statement in JavaScript.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alextheman/utility",
|
|
3
|
-
"version": "5.11.
|
|
3
|
+
"version": "5.11.3",
|
|
4
4
|
"description": "Helpful utility functions.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -31,29 +31,29 @@
|
|
|
31
31
|
"dist"
|
|
32
32
|
],
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"dotenv": "17.4.
|
|
34
|
+
"dotenv": "17.4.2",
|
|
35
35
|
"execa": "9.6.1",
|
|
36
36
|
"zod": "4.3.6"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@alextheman/eslint-plugin": "5.13.0",
|
|
40
40
|
"@types/node": "25.6.0",
|
|
41
|
-
"alex-c-line": "2.
|
|
41
|
+
"alex-c-line": "2.7.0",
|
|
42
42
|
"cross-env": "10.1.0",
|
|
43
43
|
"dotenv-cli": "11.0.0",
|
|
44
|
-
"eslint": "10.2.
|
|
45
|
-
"globals": "17.
|
|
44
|
+
"eslint": "10.2.1",
|
|
45
|
+
"globals": "17.5.0",
|
|
46
46
|
"husky": "9.1.7",
|
|
47
47
|
"jsdom": "29.0.2",
|
|
48
|
-
"prettier": "3.8.
|
|
48
|
+
"prettier": "3.8.3",
|
|
49
49
|
"tempy": "3.2.0",
|
|
50
|
-
"tsdown": "0.21.
|
|
50
|
+
"tsdown": "0.21.9",
|
|
51
51
|
"tsx": "4.21.0",
|
|
52
|
-
"typedoc": "0.28.
|
|
52
|
+
"typedoc": "0.28.19",
|
|
53
53
|
"typedoc-plugin-markdown": "4.11.0",
|
|
54
54
|
"typedoc-rhineai-theme": "1.2.0",
|
|
55
|
-
"typescript": "6.0.
|
|
56
|
-
"typescript-eslint": "8.58.
|
|
55
|
+
"typescript": "6.0.3",
|
|
56
|
+
"typescript-eslint": "8.58.2",
|
|
57
57
|
"vite": "8.0.8",
|
|
58
58
|
"vitest": "4.1.4"
|
|
59
59
|
},
|