@minecraft/core-build-tasks 5.2.0 → 5.3.1

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.
@@ -1,2 +1,2 @@
1
- import { TaskFunction } from 'just-scripts';
2
- export declare function coreLint(files: string[], fix?: boolean): TaskFunction;
1
+ import type { TaskFunction } from 'just-scripts';
2
+ export declare function coreLint(prettierFiles?: string[], fix?: boolean): TaskFunction;
@@ -1,6 +1,6 @@
1
1
  import { TaskFunction } from 'just-scripts';
2
2
  /**
3
- * If command line parameter `option` is present, watch for changes in the specified files and run the specified task.
3
+ * If command line parameter `watch` is present, it watches for changes in the specified files and run the specified task.
4
4
  * Otherwise, just run the task.
5
5
  * @param globs The file globs to watch.
6
6
  * @param taskFunction The task to run when changes are detected.