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

dist content-hash different on different path #2807

Closed
zhangbobell opened this issue Oct 25, 2018 · 14 comments
Closed

dist content-hash different on different path #2807

zhangbobell opened this issue Oct 25, 2018 · 14 comments

Comments

@zhangbobell
Copy link

Version

3.0.5

Reproduction link

https://github.com/zhangbobell/vue-cli-content-hash-reproduce

Node and OS info

Node v8.11.2 / yarn 1.10.1 / macOS 10.14 (18A391)

Steps to reproduce

Do the following 4 steps in two machines or in one machine different path, compare the content-hash in dist/js/app.<content-hash>.js, you will find them not the same.

git clone https://github.com/zhangbobell/vue-cli-content-hash-reproduce.git

cd vue-cli-content-hash-reproduce

yarn

NODE_ENV=production yarn build

I've test in two machines, the result shows below:

Result on machine A (app.js content-hash is efe1aa10):

machine-A

Result on machine B (app.js content-hash is d9410857):

machine-B

What is expected?

The two content-hash of app.js on two machines will be the same.

What is actually happening?

They are different


The following is my Vue-Cli settings:
image

I have debug this for some hours, but did not have any valuable result. But I'm sure it has something to do with babel-polyfill, since the difference disappears when I choose No with Use Babel alongside TypeScript for auto-detected polyfills? (Y/n) prompt.

It seems that babel-polyfill will inject absolute path into the compiled js, that lead this bug.

I wish someone could help to debug this.

Thanks for providing a awesome tool !

@Akryum Akryum added bug scope: cli-service build needs team repro We acknowledged your report and will soon try to reproduce it labels Oct 25, 2018
@zhangbobell
Copy link
Author

You can just create two vue projects with vue-cli 3.0 in different directory (using the above settings), then both run NODE_ENV=production yarn build, you'll easily find your content-hash of app.js is different.

Besides, when do not use babel alongside, the content hashes of the two app.js will be the same.

@zhangbobell
Copy link
Author

ping..., has anyone came up with a solution?

@zhouxinyong
Copy link
Contributor

@zhangbobell this is a problom since update to vue cli3, the same issue with #1728. No one know how to fix it...

@LinusBorg
Copy link
Member

LinusBorg commented Nov 30, 2018

This is probably related to some part of the code (ours or a loader or plugin) using absolute paths to require files. Since the hashes are calculated from the source code, if we have

require(/some/absolute/path/to/some.js)`

somewhere in the generated source, the has will be different.

Some background: https://medium.com/@the_teacher/webpack-different-assets-hashes-on-different-machines-the-problem-the-solution-ec6383983b99

@LinusBorg LinusBorg removed the needs team repro We acknowledged your report and will soon try to reproduce it label Nov 30, 2018
@zhangbobell
Copy link
Author

@LinusBorg Thanks for your reply. Yes, I'd read the blog before, link from another issue. And I guess it has something to do with babel-polyfill since the hash become identical when I do not choose babel alongside with TypeScript during creation prompt.

And also I'd searched in babel issues, and someone has encounter with it before. But not really same with ours. So.. Just a guess. I could not easily debug it, so I submit this issue.

Could anyone lend some help ?

@zhangbobell
Copy link
Author

@zhouxinyong Thanks your discussion, seems really not very easy to locate the problem. Hope someone knows it.

@haoqunjiang
Copy link
Member

It's due to this line:

absoluteRuntime: path.dirname(require.resolve('@babel/runtime/package.json'))

I think we need to expose an option here.

@zhangbobell
Copy link
Author

@sodatea Maybe this has no impact about the bug ? I just modified this line of code, the content hash did not changed.

@haoqunjiang
Copy link
Member

@zhangbobell Explicitly setting absoluteRuntime to false and then rm -rf node_modules/.cache did fix this issue as I tested just now.

@zhangbobell
Copy link
Author

zhangbobell commented Dec 13, 2018

@sodatea Oh, sorry, I just rerun without clearing the cache. I've test just now, it's really the same. Thanks very much.

Maybe I could came up with a Pull Request to fix it. 😄 Or expose an option ?

@haoqunjiang
Copy link
Member

@zhangbobell
😀Yeah send a PR please.

The best solution is to provide a good default and expose an option for customization.

We use absoluteRuntime to ensure the correct version is used.
It would be great if we can automatically enable this feature by detecting @babel/runtime's version in the root node_modules directory.
If the detection is not doable, then we can enable absoluteRuntime by default and document its usage for users who really need a consistent hash.

@zhangbobell
Copy link
Author

@sodatea Thanks for your repairing for the 'bug', I was a little busy before Chinese Spring Festival, so I did not try this PR. Thank you very much !

@ndabAP
Copy link

ndabAP commented Mar 20, 2019

With absoluteRuntime set to false, I get:

Unknown option: .absoluteRuntime.

My babel.config.js:

module.exports = {
  presets: [
    '@vue/app', { absoluteRuntime: false }
  ]
}

I did rm -rf node_modules/.cache before build and I use version 3.5.1.

@antoinematyja
Copy link

I think you are missing an array level, see:
#3533 (comment)

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

No branches or pull requests

7 participants