@punks/backend-core 0.0.59 → 0.0.61
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/cjs/index.js +7 -7
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/logging/concrete/__test__/consoleLogger.spec.d.ts +1 -0
- package/dist/cjs/types/utils/paths.d.ts +1 -1
- package/dist/esm/index.js +7 -7
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/logging/concrete/__test__/consoleLogger.spec.d.ts +1 -0
- package/dist/esm/types/utils/paths.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -2,4 +2,4 @@ export declare const joinPath: (...paths: string[]) => string;
|
|
|
2
2
|
export declare const splitPath: (filePath: string) => string[];
|
|
3
3
|
export declare const ensureDirectory: (path: string) => void;
|
|
4
4
|
export declare const getDirectoryPath: (filePath: string) => string;
|
|
5
|
-
export declare const createDayPath: (d
|
|
5
|
+
export declare const createDayPath: (d?: Date, separator?: string) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -184,7 +184,7 @@ declare const joinPath: (...paths: string[]) => string;
|
|
|
184
184
|
declare const splitPath: (filePath: string) => string[];
|
|
185
185
|
declare const ensureDirectory: (path: string) => void;
|
|
186
186
|
declare const getDirectoryPath: (filePath: string) => string;
|
|
187
|
-
declare const createDayPath: (d
|
|
187
|
+
declare const createDayPath: (d?: Date, separator?: string) => string;
|
|
188
188
|
|
|
189
189
|
declare const trimStart: (str: string, value: string) => string;
|
|
190
190
|
declare const trimEnd: (str: string, value: string) => string;
|