1.0.3 • Published 9 months ago

unplugin-combine v1.0.3

Weekly downloads
-
License
MIT
Repository
github
Last release
9 months ago

unplugin-combine npm

Unit Test

Unified plugin that combines other plugins into one plugin.

Currently supports:

Install

npm i unplugin-combine

Usage

Similar to unplugin.

import { type OptionsPlugin, createCombinePlugin } from 'unplugin-combine'

export const unplugin = createCombinePlugin((userOptions: UserOptions = {}) => {
  const plugins: OptionsPlugin[] = [plugin1, plugin2, plugin3]

  return {
    name: 'unplugin-combine-xxxx',
    plugins,
  }
})

export const vitePlugin = unplugin.vite
export const rollupPlugin = unplugin.rollup
export const rolldownPlugin = unplugin.rolldown
export const webpackPlugin = unplugin.webpack
export const rspackPlugin = unplugin.rspack
export const esbuildPlugin = unplugin.esbuild

Plugin Installation

Vite
// vite.config.ts
import UnpluginFeature from './unplugin-feature'
export default {
  plugins: [
    UnpluginFeature.vite({
      /* options */
    }),
  ],
}
Rollup
// rollup.config.js
import UnpluginFeature from './unplugin-feature'
export default {
  plugins: [
    UnpluginFeature.rollup({
      /* options */
    }),
  ],
}
Webpack
// webpack.config.js
module.exports = {
  plugins: [
    require('./unplugin-feature').webpack({
      /* options */
    }),
  ],
}
Rspack
// rspack.config.js
module.exports = {
  plugins: [
    require('./unplugin-feature').rspack({
      /* options */
    }),
  ],
}
esbuild
// esbuild.config.js
import { build } from 'esbuild'
build({
  plugins: [
    require('./unplugin-feature').esbuild({
      /* options */
    }),
  ],
})

Sponsors

License

MIT License © 2022-PRESENT 三咲智子

1.0.3

9 months ago

1.0.2

11 months ago

1.0.0

1 year ago

0.9.0

1 year ago

0.8.1

2 years ago

0.8.0

2 years ago

0.7.0

2 years ago

0.6.0

2 years ago

0.3.0

3 years ago

0.2.7

3 years ago

0.5.3

2 years ago

0.2.6

3 years ago

0.2.8

3 years ago

0.5.0

3 years ago

0.4.1

3 years ago

0.2.3

3 years ago

0.4.0

3 years ago

0.5.2

3 years ago

0.2.5

3 years ago

0.5.1

3 years ago

0.4.2

3 years ago

0.2.4

3 years ago

0.2.1

3 years ago

0.2.2

3 years ago

0.2.1-beta.0

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago