1.0.0 • Published 28 days ago

unplugin-combine v1.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
28 days 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 webpackPlugin = unplugin.webpack
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 */
    }),
  ],
}
esbuild
// esbuild.config.js
import { build } from 'esbuild'
build({
  plugins: [
    require('./unplugin-feature').esbuild({
      /* options */
    }),
  ],
})

Sponsors

License

MIT License © 2022 三咲智子

1.0.0

28 days ago

0.9.0

1 month ago

0.8.1

6 months ago

0.8.0

6 months ago

0.7.0

10 months ago

0.6.0

1 year ago

0.3.0

2 years ago

0.2.7

2 years ago

0.5.3

1 year ago

0.2.6

2 years ago

0.2.8

2 years ago

0.5.0

1 year ago

0.4.1

2 years ago

0.2.3

2 years ago

0.4.0

2 years ago

0.5.2

1 year ago

0.2.5

2 years ago

0.5.1

1 year ago

0.4.2

1 year ago

0.2.4

2 years ago

0.2.1

2 years ago

0.2.2

2 years ago

0.2.1-beta.0

2 years ago

0.2.0

2 years ago

0.1.0

2 years ago