@mangos/filepath 1.0.5 → 1.0.6

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.d.ts CHANGED
@@ -1,7 +1,7 @@
1
1
  import { ParsedPath } from './ParsedPath.js';
2
2
  import { ParsedPathError } from './ParsedPathError.js';
3
- import { allPath, firstPath, resolve } from './parser.js';
3
+ import { allPath, firstPath, resolve, resolvePathObject } from './parser.js';
4
4
  import type { PathToken } from './Token.js';
5
5
  import type { PathTokenValueType } from './types/TokenValueType.js';
6
- export { resolve, firstPath, allPath, ParsedPath, ParsedPathError };
6
+ export { resolve, firstPath, allPath, ParsedPath, ParsedPathError, resolvePathObject };
7
7
  export type { PathTokenValueType, PathToken };
package/dist/index.js CHANGED
@@ -1,10 +1,11 @@
1
1
  import { ParsedPath } from "./ParsedPath.js";
2
2
  import { ParsedPathError } from "./ParsedPathError.js";
3
- import { allPath, firstPath, resolve } from "./parser.js";
3
+ import { allPath, firstPath, resolve, resolvePathObject } from "./parser.js";
4
4
  export {
5
5
  ParsedPath,
6
6
  ParsedPathError,
7
7
  allPath,
8
8
  firstPath,
9
- resolve
9
+ resolve,
10
+ resolvePathObject
10
11
  };
package/dist/parser.d.ts CHANGED
@@ -14,4 +14,4 @@ declare function resolvePathObject(from: ParsedPath, ...toFragments: string[]):
14
14
  type InferPathOptions = {
15
15
  [key in FileSystem]+?: boolean;
16
16
  };
17
- export { resolve, type resolvePathObject, firstPath, allPath };
17
+ export { resolve, resolvePathObject, firstPath, allPath };
package/dist/parser.js CHANGED
@@ -160,5 +160,6 @@ function* inferPathType(path, options = {}) {
160
160
  export {
161
161
  allPath,
162
162
  firstPath,
163
- resolve
163
+ resolve,
164
+ resolvePathObject
164
165
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mangos/filepath",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "author": "jacob bogers <jkfbogers@gmail.com>",
5
5
  "repository": {
6
6
  "type": "git",
@@ -17,7 +17,7 @@
17
17
  "main": "./dist/index.js",
18
18
  "devDependencies": {
19
19
  "@biomejs/biome": "^2.3.8",
20
- "@types/node": "^25.0.0",
20
+ "@types/node": "^25.0.3",
21
21
  "@vitest/coverage-v8": "^4.0.15",
22
22
  "typescript": "^5.9.3",
23
23
  "vite": "^7.2.7",