mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-05-08 10:59:28 +08:00
* 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
11 lines
245 B
JavaScript
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')
|
|
};
|