lage 2.5.6 → 2.6.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/dist/index.d.ts CHANGED
@@ -23,8 +23,17 @@ interface Target {
23
23
  * Unique ID of the target (e.g. "pkg-a#build")
24
24
  */
25
25
  id: string;
26
+ /**
27
+ * A display label of the target
28
+ */
26
29
  label: string;
30
+ /**
31
+ * Working directory of the target - full path
32
+ */
27
33
  cwd: string;
34
+ /**
35
+ * Name of the task for the target (e.g. "build", "test", "lint")
36
+ */
28
37
  task: string;
29
38
  /**
30
39
  * Type of the target. If not specified, it will default to "npmScript". Determines the runner for the target.