II.
LibraryProcess overview
Reference · livelib-process:shared--shared-common
Shared reusable task definitions for the trip-planner process library. overview
Shared reusable task definitions for the trip-planner process library. Exports factory functions that create task definitions. All factories accept projectDir to avoid hardcoded paths. Import and spread into process task arrays. Usage: import { tsCheckTask, permissionAuditTask } from './shared/common.js'; export async function process(args) { return { tasks: [ // ... your tasks ... tsCheckTask(args.projectDir), permissionAuditTask(args.projectDir), ] }; }
Attributes
displayName
Shared reusable task definitions for the trip-planner process library.
description
Shared reusable task definitions for the trip-planner process library.
Exports factory functions that create task definitions. All factories accept
projectDir to avoid hardcoded paths. Import and spread into process task arrays.
Usage:
import { tsCheckTask, permissionAuditTask } from './shared/common.js';
export async function process(args) {
return {
tasks: [
// ... your tasks ...
tsCheckTask(args.projectDir),
permissionAuditTask(args.projectDir),
]
};
}
libraryPath
library/contrib/rogelsm/shared-common.js
usesAgents
- string
- browser-verify
Outgoing edges
lib_applies_to_domain1
- domain:software-engineering·DomainSoftware Engineering
lib_implements_workflow1
- workflow:feature-development·WorkflowFeature Development
Incoming edges
None.