UNPKG

@miyagi/core

Version:

miyagi is a component development tool for JavaScript template engines.

13 lines (11 loc) 297 B
import init from "./index.js"; /** * Runs the renderer to either start the server or create a build * @param {object} config - the user configuration object * @returns {Promise<object>} */ export default async function initRendering(config) { if (config) { return await init(config); } }