@milkee/d 0.2.0 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +5 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -59,6 +59,10 @@ type PluginExecutor = (result: CompilationResult) => void | Promise<void>;
|
|
|
59
59
|
*/
|
|
60
60
|
interface MilkeeConfig {
|
|
61
61
|
options?: {
|
|
62
|
+
/**
|
|
63
|
+
* Ignore update notifications.
|
|
64
|
+
*/
|
|
65
|
+
ignoreUpdate?: boolean,
|
|
62
66
|
/**
|
|
63
67
|
* Before compiling, reset the directory.
|
|
64
68
|
*/
|
|
@@ -67,6 +71,7 @@ interface MilkeeConfig {
|
|
|
67
71
|
* Before compiling, confirm "Do you want to Continue?"
|
|
68
72
|
*/
|
|
69
73
|
confirm?: boolean;
|
|
74
|
+
copy?: boolean;
|
|
70
75
|
};
|
|
71
76
|
/**
|
|
72
77
|
* (Optional) An array of plugin executor functions.
|