pi-thread-engine 0.2.2 → 0.2.3
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/extensions/index.ts +0 -9
- package/package.json +1 -1
package/extensions/index.ts
CHANGED
|
@@ -99,15 +99,6 @@ export default function (pi: ExtensionAPI) {
|
|
|
99
99
|
}
|
|
100
100
|
}
|
|
101
101
|
|
|
102
|
-
function stateColor(state: string): string {
|
|
103
|
-
switch (state) {
|
|
104
|
-
case "running": return "warning";
|
|
105
|
-
case "completed": return "success";
|
|
106
|
-
case "failed": case "killed": return "error";
|
|
107
|
-
default: return "muted";
|
|
108
|
-
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
102
|
function typeIcon(type: string): string {
|
|
112
103
|
switch (type) {
|
|
113
104
|
case "parallel": return "⫘";
|