14 lines
302 B
JavaScript
14 lines
302 B
JavaScript
"use strict";
|
|
var info = require("./cli-info");
|
|
/**
|
|
* $ browser-sync init
|
|
*
|
|
* This command will generate a configuration
|
|
* file in the current directory
|
|
*
|
|
* @param opts
|
|
*/
|
|
module.exports = function (opts) {
|
|
info.makeConfig(process.cwd(), opts.cb);
|
|
};
|
|
//# sourceMappingURL=command.init.js.map
|