We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60a5b5d commit e5e9e38Copy full SHA for e5e9e38
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "gulp-map-transform",
3
- "version": "0.0.3",
+ "version": "0.0.4",
4
"description": "A gulp plugin for transforming file references inside a file with a different stream",
5
"main": "./dist/index.js",
6
"types": "./dist/index.d.ts",
src/index.ts
@@ -78,7 +78,7 @@ function replacePaths(
78
content = content.replace(search, (match) => {
79
const prefix = typeof rootPrefix === 'string'
80
? rootPrefix
81
- : (rootPath ? '/' : '')
+ : (rootPath ? '/' : '');
82
83
return match.replace(
84
item.virtPath,
0 commit comments