0.2.0 - Mid migration

This commit is contained in:
Daniel Mason 2022-04-25 14:47:15 +12:00
parent 139e6a915e
commit 7e38fdbd7d
42393 changed files with 5358157 additions and 62 deletions

View file

@ -0,0 +1,24 @@
/**
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
export interface AggressiveSplittingPluginOptions {
/**
* Default: 0
*/
chunkOverhead?: number;
/**
* Default: 1
*/
entryChunkMultiplicator?: number;
/**
* Byte, maxsize of per file. Default: 51200
*/
maxSize?: number;
/**
* Byte, split point. Default: 30720
*/
minSize?: number;
}

View file

@ -0,0 +1,16 @@
/**
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
export interface LimitChunkCountPluginOptions {
/**
* Limit the maximum number of chunks using a value greater greater than or equal to 1
*/
maxChunks?: number;
/**
* Set a minimum chunk size
*/
minChunkSize?: number;
}

View file

@ -0,0 +1,12 @@
/**
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
export interface MinChunkSizePluginOptions {
/**
* Minimum number of characters
*/
minChunkSize: number;
}

View file

@ -0,0 +1,12 @@
/**
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
export interface OccurrenceOrderChunkIdsPluginOptions {
/**
* Prioritise initial size over total size
*/
prioritiseInitial?: boolean;
}

View file

@ -0,0 +1,12 @@
/**
* This file was automatically generated.
* DO NOT MODIFY BY HAND.
* Run `yarn special-lint-fix` to update
*/
export interface OccurrenceOrderModuleIdsPluginOptions {
/**
* Prioritise initial size over total size
*/
prioritiseInitial?: boolean;
}