-
- Excluded:
-
+
+
+ {workspace.tags.map((tag, index) => (
+
+ {tag}
+
+ ))}
+
+
+
+
+
+ )}
+
+ {workspace.executables && (
+
+
+
+
+
- {workspace.executables.excluded.map(
- (path, index) => (
-
- {path}
-
- ),
+
+ Executable Filters
+
+
+
+ {workspace.executables.included &&
+ workspace.executables.included.length > 0 && (
+
+
+ Included:
+
+
+ {workspace.executables.included.map(
+ (path, index) => (
+
+ {path}
+
+ )
+ )}
+
+
+ )}
+ {workspace.executables.excluded &&
+ workspace.executables.excluded.length > 0 && (
+
+
+ Excluded:
+
+
+ {workspace.executables.excluded.map(
+ (path, index) => (
+
+ {path}
+
+ )
+ )}
+
+
)}
+
+
+
+
+
+ )}
+
+ {workspace.verbAliases &&
+ Object.keys(workspace.verbAliases).length > 0 && (
+
+
+
+
+
+
+
+ Verb Aliases
+
+
+
+
+ {Object.entries(workspace.verbAliases).map(
+ ([mainVerb, aliases]) => (
+
+ {mainVerb}
+
+ {" "}
+ {aliases.join(", ")}
+
+
+ )
+ )}
+
+
+
+
+
+
+ )}
+
+ {workspace.envFiles && workspace.envFiles.length > 0 && (
+
+
+
+
+
+
+
+ Env Files
-
- )}
+
+