backend-manager 3.2.148 → 3.2.149

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": "3.2.148",
3
+ "version": "3.2.149",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
@@ -278,6 +278,12 @@ Module.prototype.uploadPost = function (settings, article) {
278
278
  const context = self.context;
279
279
 
280
280
  return new Promise(async function(resolve, reject) {
281
+ // if (assistant.isDevelopment()) {
282
+ // assistant.log('uploadPost(): Skipping because we are in development mode');
283
+
284
+ // return resolve();
285
+ // }
286
+
281
287
  // Fetch URL
282
288
  fetch(`${settings.app.server}/bm_api`, {
283
289
  method: 'post',