Files
firebase-tools/lib/requireConfig.js
Michael Bleigh ffa918fbc8 Big refactors, fixes for bugs
* -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
2015-10-12 10:42:25 -07:00

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();
});
};