2.0.7 • Published 6 months ago

@types/webpack-blocks__core v2.0.7

Weekly downloads
210
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/webpack-blocks__core

Summary

This package contains type definitions for @webpack-blocks/core (https://github.com/andywer/webpack-blocks/tree/master/packages/core).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/webpack-blocks__core.

index.d.ts

// Type definitions for @webpack-blocks/core 2.0
// Project: https://github.com/andywer/webpack-blocks/tree/master/packages/core
// Definitions by: Vladimir Grenaderov <https://github.com/VladimirGrenaderov>,
//                 Max Boguslavskiy <https://github.com/maxbogus>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 3.7

import { Configuration, Plugin, RuleSetRule } from 'webpack';

export type ConfigSetter<T extends Context = Context> = (
    context: T,
    util: Util
) => (config: Configuration) => Configuration;

export interface Block<T extends Context = Context> extends ConfigSetter<T> {
    pre?: ConfigSetter<T> | Array<ConfigSetter<T>> | undefined;
    post?: ConfigSetter<T> | Array<ConfigSetter<T>> | undefined;
}

export interface Context {
    match: {
        test: RegExp | RegExp[];
    };
}

export interface InitialContext {
    webpack: any;
    webpackVersion: string;
}

export interface MatchOptions {
    include?: string | undefined;
    exclude?: RegExp | undefined;
}

export interface Util {
    addLoader(loaderDefinition: RuleSetRule): () => Configuration;
    addPlugin(plugin: Plugin): () => Configuration;
    merge(configSnippet: Configuration): () => Configuration;
}

export namespace Core {
    function createConfig(configSetters: Block[]): Block;
    function createConfig(initialContext: InitialContext, configSetters: Block[]): Block;
    function group(configSetters: Block[]): Block;
    function env(envName: string, configSetters: Block[]): Block;
    function match(test: string | string[], configSetters: Block[]): Block;
    function match(test: string | string[], options: MatchOptions, configSetters: Block[]): Block;
    function when(condition: boolean, configSetters: Block[]): Block;
}

export function createConfig(configSetters: Block[]): Block;
export function createConfig(initialContext: InitialContext, configSetters: Block[]): Block;

export function group(configSetters: Block[]): Block;

export function env(envName: string, configSetters: Block[]): Block;

export function match(test: string | string[], configSetters: Block[]): Block;
export function match(test: string | string[], options: MatchOptions, configSetters: Block[]): Block;

export function when(condition: boolean, configSetters: Block[]): Block;

Additional Details

  • Last updated: Fri, 02 Jul 2021 18:05:24 GMT
  • Dependencies: @types/webpack
  • Global values: none

Credits

These definitions were written by Vladimir Grenaderov, and Max Boguslavskiy.

2.0.5

8 months ago

2.0.7

6 months ago

2.0.6

7 months ago

2.0.4

2 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

4 years ago

2.0.0

5 years ago