UNPKG

ember-cli-update

Version:
16 lines (11 loc) 302 B
'use strict'; const bootstrap = require('../../src/bootstrap'); module.exports.command = 'bootstrap'; module.exports.describe = 'saves the detected blueprint state'; module.exports.handler = async function handler() { try { await bootstrap(); } catch (err) { console.error(err); } };