@deepcode/tsc
Advanced tools
Comparing version 2.0.17 to 2.0.18
@@ -0,1 +1,4 @@ | ||
## [2.0.18] - 2020-12-29 | ||
- Support for special characters in file paths | ||
## [2.0.17] - 2020-12-29 | ||
@@ -2,0 +5,0 @@ - Bug fixing |
@@ -241,3 +241,3 @@ "use strict"; | ||
const posixPath = !isWindows ? relPath : relPath.replace(/\\/g, '/'); | ||
return `/${posixPath}`; | ||
return encodeURI(`/${posixPath}`); | ||
} | ||
@@ -310,3 +310,3 @@ async function getFileInfo(filePath, baseDir, withContent = false, cache = null) { | ||
} | ||
return nodePath.resolve(baseDir, relPath); | ||
return nodePath.resolve(baseDir, decodeURI(relPath)); | ||
} | ||
@@ -313,0 +313,0 @@ exports.resolveBundleFilePath = resolveBundleFilePath; |
{ | ||
"name": "@deepcode/tsc", | ||
"version": "2.0.17", | ||
"version": "2.0.18", | ||
"description": "Typescript consumer of Deepcode public API", | ||
@@ -5,0 +5,0 @@ "main": "dist/index.js", |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
125347