-
-
Notifications
You must be signed in to change notification settings - Fork 6.6k
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
Error importing "pluralize" / different behavior between production and dev build #3426
Comments
Output of console in dev mode : {pluralize: ƒ}
pluralize: ƒ pluralize(word, count, inclusive)
addIrregularRule: ƒ (single, plural)
addPluralRule: ƒ (rule, replacement)
addSingularRule: ƒ (rule, replacement)
addUncountableRule: ƒ (word)
isPlural: ƒ (word)
isSingular: ƒ (word)
plural: ƒ (word)
singular: ƒ (word)
arguments: (...)
caller: (...)
length: 3
name: "pluralize"
prototype: {constructor: ƒ}
__proto__: ƒ ()
[[FunctionLocation]]: pluralize.js:175
[[Scopes]]: Scopes[4]
__proto__: Object in production build:
|
This is fixed in vite 2.3.3 I'm guessing the esbuild update from #3447 fixed it. |
Not fixed :/ Still got the same error in production build. |
Workaround: import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [vue()],
build: {
commonjsOptions: {
ignoreDynamicRequires: false
}
}
}) |
One other workaround if you do not want to change which uses TS/ES6 under the hood. The original package |
See #3353 (comment) Fixes #3426 Fixes #3997
This issue has been locked since it has been closed for more than 14 days. If you have found a concrete bug or regression related to it, please open a new bug report with a reproduction against the latest Vite version. If you have any other comments you should join the chat at Vite Land or create a new discussion. |
Describe the bug
I'm using pluralize package
https://github.com/plurals/pluralize
. Since 2.3.x ( tried on each release, latest is 2.3.2 ), my application crash when trying to import and use the package :I'm importing the package like this :
With 2.3.x, in development mode it crashes :
Generated import looks like :
__vite__cjsImport3_pluralize contains "pluralize".
So if I want it to work, I have to change to
import {pluralize} from 'pluralize'
, but then, production is not working anymore.Reproduction
npm i --save pluralize
App.vue
, change setup codeBuild in prod and dev to see the difference
System Info
Output of
npx envinfo --system --npmPackages vite,@vitejs/plugin-vue --binaries --browsers
:Used package manager:
npm
Before submitting the issue, please make sure you do the following
The text was updated successfully, but these errors were encountered: