UNPKG

@roots/bud-extensions

Version:

bud.js core module

64 lines (56 loc) 2.94 kB
// Copyright © Roots Software LLC // Licensed under the MIT license. /** * @roots/bud-extensions * * @see {@link https://bud.js.org} * @see {@link https://github.com/roots/bud} */ import type BudCDN from '@roots/bud-extensions/cdn' import type BudClean from '@roots/bud-extensions/clean-webpack-plugin' import type CopyWebpackPlugin from '@roots/bud-extensions/copy-webpack-plugin' import type BudESM from '@roots/bud-extensions/esm' import type BudFixStyleOnlyEntrypoints from '@roots/bud-extensions/fix-style-only-entrypoints' import type HtmlWebpackPlugin from '@roots/bud-extensions/html-webpack-plugin' import type BudImportMap from '@roots/bud-extensions/import-map' import type InterpolateHtmlPlugin from '@roots/bud-extensions/interpolate-html-webpack-plugin' import type MiniCssExtractPlugin from '@roots/bud-extensions/mini-css-extract-plugin' import type BudTsConfigValues from '@roots/bud-extensions/tsconfig-values' import type WebpackDefinePlugin from '@roots/bud-extensions/webpack-define-plugin' import type WebpackHotModuleReplacementPlugin from '@roots/bud-extensions/webpack-hot-module-replacement-plugin' import type BudWebpackLifecyclePlugin from '@roots/bud-extensions/webpack-lifecycle-plugin' import type WebpackManifestPlugin from '@roots/bud-extensions/webpack-manifest-plugin' import type WebpackProfilePlugin from '@roots/bud-extensions/webpack-profile-plugin' import type WebpackProvidePlugin from '@roots/bud-extensions/webpack-provide-plugin' import {default as Service} from '@roots/bud-extensions/service' declare module '@roots/bud-framework' { interface Bud { cdn: BudCDN clean: BudClean esm: BudESM manifest: WebpackManifestPlugin tsconfig: BudTsConfigValues } interface Modules { '@roots/bud-extensions/cdn': BudCDN '@roots/bud-extensions/clean-webpack-plugin': BudClean '@roots/bud-extensions/copy-webpack-plugin': CopyWebpackPlugin '@roots/bud-extensions/esm': BudESM '@roots/bud-extensions/fix-style-only-entrypoints': BudFixStyleOnlyEntrypoints '@roots/bud-extensions/html-webpack-plugin': HtmlWebpackPlugin '@roots/bud-extensions/import-map': BudImportMap '@roots/bud-extensions/interpolate-html-webpack-plugin': InterpolateHtmlPlugin '@roots/bud-extensions/mini-css-extract-plugin': MiniCssExtractPlugin '@roots/bud-extensions/tsconfig-values': BudTsConfigValues '@roots/bud-extensions/webpack-define-plugin': WebpackDefinePlugin '@roots/bud-extensions/webpack-hot-module-replacement-plugin': WebpackHotModuleReplacementPlugin '@roots/bud-extensions/webpack-lifecycle-plugin': BudWebpackLifecyclePlugin '@roots/bud-extensions/webpack-manifest-plugin': WebpackManifestPlugin '@roots/bud-extensions/webpack-profile-plugin': WebpackProfilePlugin '@roots/bud-extensions/webpack-provide-plugin': WebpackProvidePlugin } interface Services { extensions: Service } } export {Service as default}