Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
}
if (options.override) {
type = "FORCE_PULL";
}
return startServer(siteRootPath, {
type
});
};
const startInEditMode = siteRootPath =>
startServer(siteRootPath, {
type: "EDIT"
});
module.exports = {
startInCloneMode: logAsyncErrors(startInCloneMode),
startInEditMode: logAsyncErrors(startInEditMode)
};
type = "MOVE_PULL";
}
if (options.override) {
type = "FORCE_PULL";
}
return startServer(siteRootPath, {
type
});
};
const startInEditMode = siteRootPath =>
startServer(siteRootPath, {
type: "EDIT"
});
module.exports = {
startInCloneMode: logAsyncErrors(startInCloneMode),
startInEditMode: logAsyncErrors(startInEditMode)
};