UNPKG

@brixtol/rollup-config

Version:

Shared Rollup configuration interface used within the Brixtol Textiles monorepo.

136 lines (135 loc) 4.01 kB
import alias from '@rollup/plugin-alias'; import commonjs from '@rollup/plugin-commonjs'; import html from '@brixtol/rollup-html'; import json from '@rollup/plugin-json'; import multi from '@rollup/plugin-multi-entry'; import polyfills from 'rollup-plugin-node-polyfills'; import postcss from 'rollup-plugin-postcss'; import resolve from '@rollup/plugin-node-resolve'; import replace from '@rollup/plugin-replace'; import type { Options } from 'browser-sync'; import type { Plugin } from 'rollup'; import copy from 'rollup-plugin-copy'; import del from 'rollup-plugin-delete'; import { terser } from 'rollup-plugin-terser'; import { ESBuild, ESMinify } from './types/esbuild'; export { defineConfig as rollup } from 'rollup'; export { config, env, banner, jsonmin, date } from '@brixtol/rollup-utils'; /** * Rollup Plugins * * A helper export of rollup plugins used within packages * maintained by [Brixtol](htpps://brixtol.com). */ export declare const plugin: { /** * Serve bundle via Browser Sync * * [rollup-plugin-browsersync](https://git.io/JXjkK) */ readonly bs: (options: Options) => Plugin; /** * Alias modules in a build. * * [@rollup/plugin-alias](https://git.io/JuTc9) */ readonly alias: typeof alias; /** * Beeps when a build ends with errors. * * [@rollup/plugin-beep](https://git.io/JuTEW) */ readonly beep: () => Plugin; /** * Copy files and folders, with glob support. * * [rollup-plugin-copy](https://git.io/JuTux) */ readonly copy: typeof copy; /** * Convert CommonJS modules to ES Modules * * [@rollup/plugin-commonjs](https://git.io/JuTcI) */ readonly commonjs: typeof commonjs; /** * Delete files and folders. * * [rollup-plugin-delete](https://git.io/JuTz3) */ readonly del: typeof del; /** * Rolls`.d.ts? definition files, used together with * esbuild. * * rollup-plugin-dts](https://git.io/J1ykd) */ readonly dts: import("rollup").PluginImpl<import("rollup-plugin-dts").Options>; /** * ESBuild integration for minification and TypeScript support. * * [rollup-plugin-esbuild](https://git.io/J1DEP) */ readonly esbuild: typeof ESBuild; /** * Show filesize in the cli * * [rollup-plugin-filesize](https://git.io/JuTzw) */ readonly filesize: (options?: import("rollup-plugin-filesize").FileSizePluginOptions) => Plugin; /** * Creates HTML files to serve Rollup bundles * * [rollup-plugin-html](https://github.com/brixtol/rollup-html#readme) */ readonly html: typeof html; /** * Convert JSON files to ES Modules. * * [@rollup/plugin-json](https://git.io/JuTni) */ readonly json: typeof json; /** * Allows use of multiple entry points for a bundle. * * [@rollup/plugin-multi-entry](https://git.io/JwRT2) */ readonly multi: typeof multi; /** * Allows the node builtins to be required/imported. * * [rollup-plugin-node-polyfills](https://git.io/JuTuV) */ readonly polyfills: typeof polyfills; /** * Seamless integration between Rollup and PostCSS. * * [rollup-plugin-postcss](https://git.io/JuEZg) */ readonly postcss: typeof postcss; /** * Use the Node resolution algorithm. * * [@rollup/plugin-node-resolve](https://git.io/JOqCR) * */ readonly resolve: typeof resolve; /** * Replace occurrences of a set of strings. * * [@rollup/plugin-replace](https://git.io/JuTcC) */ readonly replace: typeof replace; /** * Minify using esbuild * * [rollup-plugin-esbuild](https://git.io/J1DEP) */ readonly esminify: typeof ESMinify; /** * Minify generated es bundle using terser under the hood. * * [rollup-plugin-terser](https://git.io/JuTz5) */ readonly terser: typeof terser; };