@operato/utils
Advanced tools
Comparing version 1.4.26 to 1.4.27
@@ -6,2 +6,11 @@ # Change Log | ||
### [1.4.27](https://github.com/hatiolab/operato/compare/v1.4.26...v1.4.27) (2023-08-11) | ||
### :bug: Bug Fix | ||
* handle context-path-prefix changed event ([26ab536](https://github.com/hatiolab/operato/commit/26ab536737793565c924517d770ee77f34fe6efe)) | ||
### [1.4.26](https://github.com/hatiolab/operato/compare/v1.4.25...v1.4.26) (2023-08-11) | ||
@@ -8,0 +17,0 @@ |
@@ -7,2 +7,2 @@ export declare function getPathInfo(pathname: string): { | ||
}; | ||
export declare function setContextPathPrefix(contextPathPrefix: string): void; | ||
export declare function setContextPathPrefix(contextPathPrefix?: string): void; |
@@ -5,3 +5,3 @@ { | ||
"author": "heartyoh", | ||
"version": "1.4.26", | ||
"version": "1.4.27", | ||
"main": "dist/src/index.js", | ||
@@ -121,3 +121,3 @@ "module": "dist/src/index.js", | ||
}, | ||
"gitHead": "8edca718fc0ae7b357d1b49d28389c42ab90e4eb" | ||
"gitHead": "5d90ed1864641d5540d005989df42a53aa96559d" | ||
} |
@@ -21,5 +21,5 @@ var CONTEXT_PATH_PREFIX = 'domain|business' | ||
export function setContextPathPrefix(contextPathPrefix: string) { | ||
export function setContextPathPrefix(contextPathPrefix?: string) { | ||
console.log('context-path-prefix was just set', contextPathPrefix) | ||
CONTEXT_PATH_PREFIX = contextPathPrefix || 'domain|business' | ||
} |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
207807