-
-
Notifications
You must be signed in to change notification settings - Fork 33.7k
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
vue.esm.js build throws exception in browsers supporting ES modules (Safari preview) #5227
Comments
Yeah, the esm build is meant to be used with a bundler. Use the |
Now that more browsers support ES6 modules, it would be great to be able to
This codepen seems to work in Chrome 61 and Safari 10 (did not test ES6 modules flags in Firefox and Edge) by defining a Could it be just something like |
Would also like (and expect) to import Vue from |
FYI, the presence of At this moment, using native ES modules in the browser still comes with significant performance issues, so a build step is still preferred for any type of serious usage, which is why we still prioritize the dist files for bundlers. |
A browser-compatible esm file would be good IMHO so Vue can still be discovered simply (no bundling) and learned progressively using modern ES features. Maybe a new 'web-full-esm-script': {
entry: resolve('web/entry-runtime-with-compiler.js'),
dest: resolve('dist/vue.esm-script.js'),
format: 'es',
env: 'development', // this replaces process.env.NODE_ENV with 'development'
alias: { he: './entity-decoder' },
banner
}, Or the other way around, rename |
Also supporting this, browser compatible ES Module support would be neat! Another thing that seems to work without issues is to add an export default to the main vue.js and make the function return factory(), like so:
(we have to check whether global exists because it is undefined in ES modules, so assigning to global.Vue there throws an exception) But of course this might break compatibility with some bundlers/build tools, I don't know.. |
A new |
Version
2.2.4
Reproduction link
https://github.com/stefanjudis/vue-esm-issue
Steps to reproduce
Try
import Vue from 'vue.esm.js'
in Safari Technology Preview.What is expected?
It is expected that I can import the ES module in a Browser environment that supports ES modules already.
What is actually happening?
The module includes references to
process
which throws aReference Error
then.I'm just playing around with the new support of ES modules and try to figure out what this all means for our development workflows and ecosystem. Modules, rel=preload, HTTP/2, it might be, that best practices will shift again.
I ran into this bug, because I wanted to measure a bundle including vue against ES modules making several requests. Maybe I'm not getting the idea of this build, but as I understand it should support the native environment. :)
The text was updated successfully, but these errors were encountered: