Add coexistence checks to all enqueue methods to prevent loading both React and Grid.js assets simultaneously. Changes: - ReactAdmin.php: Only enqueue React assets when ?react=1 - Init.php: Skip Grid.js when React active on admin pages - Form.php, Coupon.php, Access.php: Restore classic assets when ?react=0 - Customer.php, Product.php, License.php: Add coexistence checks Now the toggle between Classic and React versions works correctly. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
import { Compiler, Stats, compilation as compilationType } from 'webpack';
|
|
declare type Compilation = compilationType.Compilation;
|
|
export interface Options {
|
|
/**
|
|
* Simulate the removal of files
|
|
*
|
|
* default: false
|
|
*/
|
|
dry?: boolean;
|
|
/**
|
|
* Write Logs to Console
|
|
* (Always enabled when dry is true)
|
|
*
|
|
* default: false
|
|
*/
|
|
verbose?: boolean;
|
|
/**
|
|
* Automatically remove all unused webpack assets on rebuild
|
|
*
|
|
* default: true
|
|
*/
|
|
cleanStaleWebpackAssets?: boolean;
|
|
/**
|
|
* Do not allow removal of current webpack assets
|
|
*
|
|
* default: true
|
|
*/
|
|
protectWebpackAssets?: boolean;
|
|
/**
|
|
* Removes files once prior to Webpack compilation
|
|
* Not included in rebuilds (watch mode)
|
|
*
|
|
* Use !negative patterns to exclude files
|
|
*
|
|
* default: ['**\/*']
|
|
*/
|
|
cleanOnceBeforeBuildPatterns?: string[];
|
|
/**
|
|
* Removes files after every build (including watch mode) that match this pattern.
|
|
* Used for files that are not created directly by Webpack.
|
|
*
|
|
* Use !negative patterns to exclude files
|
|
*
|
|
* default: []
|
|
*/
|
|
cleanAfterEveryBuildPatterns?: string[];
|
|
/**
|
|
* Allow clean patterns outside of process.cwd()
|
|
*
|
|
* requires dry option to be explicitly set
|
|
*
|
|
* default: false
|
|
*/
|
|
dangerouslyAllowCleanPatternsOutsideProject?: boolean;
|
|
}
|
|
declare class CleanWebpackPlugin {
|
|
private readonly dry;
|
|
private readonly verbose;
|
|
private readonly cleanStaleWebpackAssets;
|
|
private readonly protectWebpackAssets;
|
|
private readonly cleanAfterEveryBuildPatterns;
|
|
private readonly cleanOnceBeforeBuildPatterns;
|
|
private readonly dangerouslyAllowCleanPatternsOutsideProject;
|
|
private currentAssets;
|
|
private initialClean;
|
|
private outputPath;
|
|
constructor(options?: Options);
|
|
apply(compiler: Compiler): void;
|
|
/**
|
|
* Initially remove files from output directory prior to build.
|
|
*
|
|
* Only happens once.
|
|
*
|
|
* Warning: It is recommended to initially clean your build directory outside of webpack to minimize unexpected behavior.
|
|
*/
|
|
handleInitial(compilation: Compilation): void;
|
|
handleDone(stats: Stats): void;
|
|
removeFiles(patterns: string[]): void;
|
|
}
|
|
export { CleanWebpackPlugin };
|
|
//# sourceMappingURL=clean-webpack-plugin.d.ts.map
|