@rollup/plugin-typescript
Advanced tools
Comparing version 8.3.1 to 8.3.2
# @rollup/plugin-typescript ChangeLog | ||
## v8.3.2 | ||
_2022-04-13_ | ||
### Bugfixes | ||
- fix: Drive letter casing on win32 platforms. fixes #1133 (#1134) | ||
## v8.3.1 | ||
@@ -4,0 +12,0 @@ |
@@ -672,3 +672,3 @@ import * as path from 'path'; | ||
cachedFilename(fileName) { | ||
return path__default.join(this._cacheFolder, fileName.replace(/^([A-Z]+):/, '$1')); | ||
return path__default.join(this._cacheFolder, fileName.replace(/^([a-zA-Z]+):/, '$1')); | ||
} | ||
@@ -675,0 +675,0 @@ /** Emits a file in the cache folder */ |
@@ -698,3 +698,3 @@ 'use strict'; | ||
cachedFilename(fileName) { | ||
return path__default["default"].join(this._cacheFolder, fileName.replace(/^([A-Z]+):/, '$1')); | ||
return path__default["default"].join(this._cacheFolder, fileName.replace(/^([a-zA-Z]+):/, '$1')); | ||
} | ||
@@ -701,0 +701,0 @@ /** Emits a file in the cache folder */ |
{ | ||
"name": "@rollup/plugin-typescript", | ||
"version": "8.3.1", | ||
"version": "8.3.2", | ||
"publishConfig": { | ||
@@ -5,0 +5,0 @@ "access": "public" |
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
96277