Skip to content

Commit 82706f6

Browse files
authored
Merge pull request #44 from vladislav805/fix-uploading-with-qs
Use filename of map file without query string
2 parents a3dc5f0 + 0722b09 commit 82706f6

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": "@hawk.so/webpack-plugin",
3-
"version": "1.0.2",
3+
"version": "1.0.3",
44
"description": "Webpack plugin for sending source-maps to the Hawk",
55
"main": "src/index.js",
66
"repository": "https://github.com/codex-team/hawk.webpack.plugin.git",

src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ class HawkWebpackPlugin {
210210
if (extension === 'map') {
211211
maps.push({
212212
name,
213-
path: path.join(outputPath, name),
213+
path: path.join(outputPath, filename),
214214
});
215215
}
216216
});

0 commit comments

Comments
 (0)