Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make sure paths are consistent from os to os #78

Merged
merged 1 commit into from
Sep 10, 2017
Merged

Conversation

mastilver
Copy link
Contributor

closes #60

@mastilver mastilver added this to the v2.x milestone Sep 1, 2017
@codecov-io
Copy link

codecov-io commented Sep 1, 2017

Codecov Report

Merging #78 into master will increase coverage by 0.07%.
The diff coverage is 100%.

Impacted file tree graph

@@            Coverage Diff             @@
##           master      #78      +/-   ##
==========================================
+ Coverage   98.57%   98.64%   +0.07%     
==========================================
  Files           2        2              
  Lines          70       74       +4     
==========================================
+ Hits           69       73       +4     
  Misses          1        1
Impacted Files Coverage Δ
lib/plugin.js 98.63% <100%> (+0.07%) ⬆️

Continue to review full report at Codecov.

Legend - Click here to learn more
Δ = absolute <relative> (impact), ø = not affected, ? = missing data
Powered by Codecov. Last update de15a87...1adf3ef. Read the comment docs.

lib/plugin.js Outdated
@@ -110,6 +110,12 @@ ManifestPlugin.prototype.apply = function(compiler) {
}.bind(this));
}

files = files.map(file => {
file.name = file.name.replace('\\', '/');
file.path = file.path.replace('\\', '/');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'\\' is equivalent /\//
but /\//g expected

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

'sdfds\\sdfsdf\\'.replace('\\', '/') // -> "sdfds/sdfsdf\"
'sdfds\\sdfsdf\\'.replace(/\\/, '/') // -> "sdfds/sdfsdf\"
'sdfds\\sdfsdf\\'.replace(/\\/g, '/') // -> "sdfds/sdfsdf/"

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Good catch 👍

webpackCompile({
context: __dirname,
entry: {
'dir\\main': './fixtures/file.js'
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

add some\\dir\\main also

@mastilver
Copy link
Contributor Author

@a-x- fixed the issue you spotted :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Option to map entries or normalize paths on both Windows and OSX/Linux
3 participants