UNPKG

singularci

Version:

SingularCI is a DSL transpiler used to generate CI/CD configuration files for existing CI platforms

16 lines 349 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Job { constructor(name, tasks) { this.name = name; this.tasks = tasks; } getName() { return this.name; } getTasks() { return this.tasks; } } exports.default = Job; //# sourceMappingURL=Job.js.map