path-serializer 0.0.6-beta.1 → 0.0.6-beta.2
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/main.cjs +3 -1
- package/dist/esm/main.js +3 -1
- package/package.json +1 -1
package/dist/cjs/main.cjs
CHANGED
|
@@ -1067,7 +1067,9 @@ const createDefaultPathMatchers = ()=>{
|
|
|
1067
1067
|
;// CONCATENATED MODULE: ./src/transformCodeToPosixPath.ts
|
|
1068
1068
|
|
|
1069
1069
|
function transformCodeToPosixPath(code) {
|
|
1070
|
-
return code.replace(
|
|
1070
|
+
return code.replace(// windows absolute path
|
|
1071
|
+
// ignore http, https, file
|
|
1072
|
+
/(?<!htt)(?<!http)(?<!fil)([a-zA-Z]:[\\/])([-\u4e00-\u9fa5\w\s.()~!@#$%^&()\[\]{}+=]+[\\/])*/g, (match, str1)=>{
|
|
1071
1073
|
return normalizeToPosixPath(match);
|
|
1072
1074
|
});
|
|
1073
1075
|
}
|
package/dist/esm/main.js
CHANGED
|
@@ -1058,7 +1058,9 @@ const createDefaultPathMatchers = ()=>{
|
|
|
1058
1058
|
;// CONCATENATED MODULE: ./src/transformCodeToPosixPath.ts
|
|
1059
1059
|
|
|
1060
1060
|
function transformCodeToPosixPath(code) {
|
|
1061
|
-
return code.replace(
|
|
1061
|
+
return code.replace(// windows absolute path
|
|
1062
|
+
// ignore http, https, file
|
|
1063
|
+
/(?<!htt)(?<!http)(?<!fil)([a-zA-Z]:[\\/])([-\u4e00-\u9fa5\w\s.()~!@#$%^&()\[\]{}+=]+[\\/])*/g, (match, str1)=>{
|
|
1062
1064
|
return normalizeToPosixPath(match);
|
|
1063
1065
|
});
|
|
1064
1066
|
}
|