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

Using @vue/devtools, splitVendorChunkPlugin, and having stream transitively installed causes Vite to output import "emitter" to the bundle #11888

Closed
7 tasks done
segevfiner opened this issue Feb 1, 2023 · 9 comments

Comments

@segevfiner
Copy link
Contributor

Describe the bug

Vite includes import "emitter" in the outputted bundle when you have conditional usage of @vue/devtools (That should be tree shaken out), splitVendorChunkPlugin and the module stream installed transitively.

Vite apparently includes chooses to include the node version of @vue/devtools in the bundle instead of the browser version. This then includes a require to the stream module, which due to installing pino-datadog resolved to the npm stream module, which includes an import "emitter" which gets included into the final bundle.

It doesn't get included without splitVendorChunkPlugin. Or some other usages of manualChunks that I wasn't able to pinpoint.

Reproduction

https://stackblitz.com/edit/vitejs-vite-u6bnd2?file=src/main.ts

Steps to reproduce

  1. Run npm run build in the reproduction.
  2. The outputted chunks include import "emitter" which will fail at runtime.

System Info

System:
    OS: macOS 13.2
    CPU: (10) arm64 Apple M1 Pro
    Memory: 89.91 MB / 16.00 GB
    Shell: 5.8.1 - /bin/zsh
  Binaries:
    Node: 16.19.0 - ~/.nvm/versions/node/v16.19.0/bin/node
    Yarn: 1.22.19 - ~/.nvm/versions/node/v16.19.0/bin/yarn
    npm: 9.4.0 - ~/.nvm/versions/node/v16.19.0/bin/npm
  Browsers:
    Chrome: 109.0.5414.119
    Safari: 16.3
  npmPackages:
    @vitejs/plugin-vue: ^4.0.0 => 4.0.0 
    vite: ^4.0.0 => 4.0.4

Used Package Manager

pnpm

Logs

No response

Validations

@Tanimodori
Copy link

Tanimodori commented Mar 17, 2023

Workaround

pnpm i stream
/** eslint-env node */
import { defineConfig, splitVendorChunkPlugin } from "vite";
import vue from "@vitejs/plugin-vue";
import { resolve } from "node:path";

// https://vitejs.dev/config/
export default defineConfig({
  resolve: {
    alias: {
      stream: resolve(__dirname, "./node_modules/stream/index.js"),
    },
  },
  plugins: [vue(), splitVendorChunkPlugin()],
});

@Tanimodori
Copy link

@patak-dev
Copy link
Member

This seems to be fixed in vite@4.3.0-beta.5: https://stackblitz.com/edit/vitejs-vite-6wetst

@segevfiner
Copy link
Contributor Author

@patak-dev We are still getting a lot of warnings due to trying to build the Node version in the browser build though. Something is still wrong, it should try to build the browser build and strip it out due to tree-shaking, not build the Node build and strip it out...

@patak-dev patak-dev reopened this Apr 13, 2023
@sapphi-red
Copy link
Member

We are still getting a lot of warnings due to trying to build the Node version in the browser build though.

@segevfiner
Would you elaborate this part?
@vue/devtools only has main field and that file uses a runtime detection (typeof window !== 'undefined').
https://cdn.jsdelivr.net/npm/@vue/devtools@6.5.0/package.json
https://cdn.jsdelivr.net/npm/@vue/devtools@6.5.0/index.js
So it's expected that the node version gets in the build.

@segevfiner
Copy link
Contributor Author

Maybe that's the bit that should be changed though. @vue/devtools itself might be better off using package.json exports instead of runtime detection?

@sapphi-red
Copy link
Member

I think so.
I'll close this issue as I think it needs to be fixed on the @vue/devtools side.

@segevfiner
Copy link
Contributor Author

Should I open an issue on @vue/devtools?

@sapphi-red
Copy link
Member

Yes, that would be nice.

@github-actions github-actions bot locked and limited conversation to collaborators Jun 20, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

No branches or pull requests

4 participants