@ztimson/utils 0.28.3 → 0.28.5
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 +139 -53
- package/dist/index.cjs.map +1 -1
- package/dist/index.mjs +139 -53
- package/dist/index.mjs.map +1 -1
- package/dist/path-events.d.ts +2 -0
- package/package.json +1 -1
package/dist/path-events.d.ts
CHANGED
|
@@ -45,6 +45,8 @@ export declare class PathEvent {
|
|
|
45
45
|
module: string;
|
|
46
46
|
/** Entire path, including the module & name */
|
|
47
47
|
fullPath: string;
|
|
48
|
+
/** Parent directory, excludes module & name */
|
|
49
|
+
dir: string;
|
|
48
50
|
/** Path including the name, excluding the module */
|
|
49
51
|
path: string;
|
|
50
52
|
/** Last segment of path */
|