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

If imports receives a two-dimensional array object format implemented as a function, it will report a type error. #485

Open
5 tasks done
yveeven opened this issue Apr 16, 2024 · 1 comment

Comments

@yveeven
Copy link

yveeven commented Apr 16, 2024

Describe the bug

CleanShot 2024-04-16 at 17 23 58@2x

code:

/src/plugins/lodash
import lodash from 'lodash'

export function lodashImports() {
  const exports = Object.keys(lodash).map(v => [v, `use${lodash.upperFirst(v)}`])

  return {
    lodash: exports,
  }
}

/vite.config.ts
import { lodashImports } from './src/plugins/lodash'
...
export default defineConfig({
  plugins: [
    AutoImport({ imports: [lodashImports()] })
  ]
})

CleanShot 2024-04-16 at 17 30 44@2x

Reproduction

https://stackblitz.com/edit/vitejs-vite-bljbqc?file=vite.config.ts

System Info

System:
    OS: macOS 14.0
    CPU: (8) arm64 Apple M1 Pro
    Memory: 284.13 MB / 32.00 GB
    Shell: 5.9 - /bin/zsh
  Binaries:
    Node: 18.19.0 - ~/.volta/tools/image/node/18.19.0/bin/node
    npm: 10.2.3 - ~/.volta/tools/image/node/18.19.0/bin/npm
    pnpm: 8.10.2 - ~/.volta/tools/image/pnpm/8.10.2/bin/pnpm
    bun: 1.0.11 - ~/.bun/bin/bun
  Browsers:
    Chrome: 123.0.6312.124
    Safari: 17.0

Used Package Manager

pnpm

Validations

  • Follow our Code of Conduct
  • Read the Contributing Guide.
  • Check that there isn't already an issue that reports the same bug to avoid creating a duplicate.
  • Check that this is a concrete bug. For Q&A, please open a GitHub Discussion instead.
  • The provided reproduction is a minimal reproducible of the bug.
Copy link

stackblitz bot commented Apr 16, 2024

Fix this issue in StackBlitz Codeflow Start a new pull request in StackBlitz Codeflow.

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

No branches or pull requests

1 participant