mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
chore(core): monorepo, esm targeting, improved management (#8707)
This commit is contained in:
13
packages/webpack/plugins/WatchStateLoggerPlugin.d.ts
vendored
Normal file
13
packages/webpack/plugins/WatchStateLoggerPlugin.d.ts
vendored
Normal file
@ -0,0 +1,13 @@
|
||||
export declare enum messages {
|
||||
compilationComplete = "Webpack compilation complete.",
|
||||
startWatching = "Webpack compilation complete. Watching for file changes.",
|
||||
changeDetected = "File change detected. Starting incremental webpack compilation..."
|
||||
}
|
||||
/**
|
||||
* This little plugin will report the webpack state through the console.
|
||||
* So the {N} CLI can get some idea when compilation completes.
|
||||
*/
|
||||
export declare class WatchStateLoggerPlugin {
|
||||
isRunningWatching: boolean;
|
||||
apply(compiler: any): void;
|
||||
}
|
Reference in New Issue
Block a user