Comparing version 0.1.3 to 0.1.4
@@ -45,3 +45,3 @@ #!/usr/bin/env node | ||
const initCreate = () => { | ||
export const initCreate = () => { | ||
cp('-r', __dirname + '/../src/.', './'); | ||
@@ -73,3 +73,3 @@ console.log('----------------------------------------------------------'); | ||
const create = (appName) => { | ||
export const create = (appName) => { | ||
cp('-r', __dirname + '/../src/.', appName); | ||
@@ -105,3 +105,3 @@ console.log('----------------------------------------------------------'); | ||
const build = (deployState = false ) => { | ||
export const build = (deployState = false ) => { | ||
let command; | ||
@@ -124,3 +124,3 @@ if (shouldUseYarn()) { | ||
const deploy = () => { | ||
export const deploy = () => { | ||
try { | ||
@@ -135,2 +135,2 @@ execSync('firebase deploy --only functions', { stdio: 'inherit' }); | ||
module.exports = [initCreate,create,build, deploy] | ||
// module.exports = [initCreate,create,build, deploy] |
{ | ||
"version": "0.1.3", | ||
"version": "0.1.4", | ||
"main": "index.js", | ||
@@ -4,0 +4,0 @@ "bin": "bin/cli.js", |
23733