backend-manager 2.3.17 → 2.3.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "2.3.17",
3
+ "version": "2.3.18",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -33,7 +33,7 @@ Manager.prototype.init = function (exporter, options) {
33
33
  options = options || {};
34
34
  options.initialize = typeof options.initialize === 'undefined' ? true : options.initialize;
35
35
  options.setupFunctions = typeof options.setupFunctions === 'undefined' ? true : options.setupFunctions;
36
- options.setupLocalDatabase = typeof options.setupLocalDatabase === 'undefined' ? false : options.setupLocalDatabase;
36
+ options.initializeLocalStorage = typeof options.initializeLocalStorage === 'undefined' ? false : options.initializeLocalStorage;
37
37
  options.sentry = typeof options.sentry === 'undefined' ? true : options.sentry;
38
38
  options.reportErrorsInDev = typeof options.reportErrorsInDev === 'undefined' ? false : options.reportErrorsInDev;
39
39
  options.firebaseConfig = options.firebaseConfig;
@@ -365,7 +365,7 @@ Manager.prototype.init = function (exporter, options) {
365
365
  }
366
366
 
367
367
  // Setup LocalDatabase
368
- if (options.setupLocalDatabase) {
368
+ if (options.initializeLocalStorage) {
369
369
  self.storage();
370
370
  }
371
371