parent
f5c85c26e2
commit
9451c0691a
@ -1,7 +1,7 @@ |
|||||||
"use strict"; |
"use strict"; |
||||||
|
|
||||||
import * as _ from "underscore"; |
import * as _ from "underscore"; |
||||||
import { build } from "../lib/builder"; |
import { build } from "../builder"; |
||||||
|
|
||||||
export const get = (req, res) => res.render("manual"); |
export const get = (req, res) => res.render("manual"); |
||||||
|
|
@ -1,8 +1,8 @@ |
|||||||
"use strict"; |
"use strict"; |
||||||
|
|
||||||
import * as JSONParse from "json-parse-safe"; |
import * as JSONParse from "json-parse-safe"; |
||||||
import { build } from "../lib/builder"; |
import { build } from "../builder"; |
||||||
import { commentOnPullRequest } from "../lib/commenter"; |
import { commentOnPullRequest } from "../commenter"; |
||||||
|
|
||||||
const getBranchDescription = (options) => `${options.owner}/${options.reponame}:${options.branchname || options.branch}`; |
const getBranchDescription = (options) => `${options.owner}/${options.reponame}:${options.branchname || options.branch}`; |
||||||
|
|
@ -1,5 +1,5 @@ |
|||||||
"use strict"; |
"use strict"; |
||||||
|
|
||||||
import { Task } from "../../types"; |
import { Task } from "../types"; |
||||||
|
|
||||||
export default ((params, processor) => processor.done()) as Task; |
export default ((params, processor) => processor.done()) as Task; |
||||||
|
Loading…
Reference in new issue