You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gaoshuguang 4b3ed4c085 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
..
dist 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
node_modules/escape-string-regexp 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
LICENSE 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
README.md 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
package.json 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago
unplugin.d.ts 2024年08月09日 1.0.0 初始化收费站版本实时信息查询,在原有集中监控版本上增加实时信息查询页面 1 year ago

README.md

unimport

npm version npm downloads Github Actions Codecov

Unified utils for auto importing APIs in modules

Features

  • Auto import registed APIs for Vite, Webpack or esbuild powered by unplugin
  • TypeScript declaration file generation
  • Auto import for custom APIs defined under specific directories
  • Auto import for Vue template

Install

# npm
npm install unimport

# yarn
yarn add unimport

# pnpm
pnpm install unimport

Usage

Plugin Usage

Powered by unplugin, unimport provides a plugin interface for bundlers.

Vite / Rollup

// vite.config.js / rollup.config.js
import Unimport from 'unimport/unplugin'

export default {
  plugins: [
    Unimport.vite({ /* plugin options */ })
  ]
}

Webpack

// webpack.config.js
import Unimport from 'unimport/unplugin'

module.exports = {
  plugins: [
    Unimport.webpack({ /* plugin options */ })
  ]
}

Programmatic Usage

// ESM
import { createUnimport } from 'unimport'

// CommonJS
const { createUnimport } = require('unimport')
const { injectImports } = createUnimport({
  imports: [{ name: 'fooBar', from: 'test-id' }]
})

// { code: "import { fooBar } from 'test-id';console.log(fooBar())" }
console.log(injectImports('console.log(fooBar())'))

Configurations

Type Declarations

Unimport.vite({
  dts: true // or a path to generated file
})

Directory Auto Import

Unimport.vite({
  dirs: [
    './composables'
  ]
})

Exported APIs for modules under ./composables will be auto imported.

Vue Template Auto Import

In Vue's template, usage of APIs are in different context than plain modules. Thus some custom transformation are required. To enable it, set addons.vueTemplate to true:

Unimport.vite({
  addons: {
    vueTemplate: true
  }
})

Caveats

When auto-import a ref, inline operations won't be auto unwrapped.

export const counter = ref(0)
<template>
  <!-- this is ok -->
  <div>{{ counter }}</div>

  <!-- counter here is a ref, this won't work, volar will throw -->
  <div>{{ counter + 1 }}</div>

  <!-- use this instead -->
  <div>{{ counter.value + 1 }}</div>
</template>

We recommend using Volar for type checking, which will help you to identify the misusage.

💻 Development

  • Clone this repository
  • Enable Corepack using corepack enable (use npm i -g corepack for Node.js < 16.10)
  • Install dependencies using pnpm install
  • Run interactive tests using pnpm dev

License

Made with 💛

Published under MIT License.