Files
firebase-tools/lib/init/features/index.js
Michael Bleigh 9d3b7deaea Re-imagined firebase init flow for multiple products
* Init now asks which CLI features you want to setup
* Init now creates index.html for Hosting
* Init can now setup the Firebase Functions directory
* Init can now setup Firebase Storage rules deployment
* Init can now be run again in an existing directory
2016-04-08 18:28:00 -07:00

11 lines
245 B
JavaScript

'use strict';
module.exports = {
database: require('./database'),
functions: require('./functions'),
hosting: require('./hosting'),
storage: require('./storage'),
// always runs, sets up .firebaserc
project: require('./project')
};