Skip to content

Commit e5e9e38

Browse files
committed
fix(ts): missing semicolon
1 parent 60a5b5d commit e5e9e38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-map-transform",
3-
"version": "0.0.3",
3+
"version": "0.0.4",
44
"description": "A gulp plugin for transforming file references inside a file with a different stream",
55
"main": "./dist/index.js",
66
"types": "./dist/index.d.ts",

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ function replacePaths(
7878
content = content.replace(search, (match) => {
7979
const prefix = typeof rootPrefix === 'string'
8080
? rootPrefix
81-
: (rootPath ? '/' : '')
81+
: (rootPath ? '/' : '');
8282

8383
return match.replace(
8484
item.virtPath,

0 commit comments

Comments
 (0)