mirror of
https://github.com/zhigang1992/firebase-tools.git
synced 2026-05-25 01:11:37 +08:00
* -s is now --non-interactive * firebase-cli with options but no command no longer hangs * login doesn't run in non-interactive mode * config is now materialized according to the new world specs * config and firebase name are applied in before filters
14 lines
281 B
JavaScript
14 lines
281 B
JavaScript
'use strict';
|
|
|
|
var Config = require('./config');
|
|
var RSVP = require('rsvp');
|
|
|
|
module.exports = function(options) {
|
|
return new RSVP.Promise(function(resolve) {
|
|
console.log('before');
|
|
options.config = Config.load(options);
|
|
console.log('after');
|
|
resolve();
|
|
});
|
|
};
|