backend-manager 2.0.22 → 2.0.23

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/cli/cli.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "backend-manager",
3
- "version": "2.0.22",
3
+ "version": "2.0.23",
4
4
  "description": "Quick tools for developing Firebase functions",
5
5
  "main": "src/manager/index.js",
6
6
  "bin": {
package/src/cli/cli.js CHANGED
@@ -208,7 +208,7 @@ Main.prototype.getRulesFile = function () {
208
208
  Main.prototype.setup = async function () {
209
209
  let self = this;
210
210
  let cwd = fs.cwd();
211
- log(chalk.green(`\n---- RUNNING SETUP ----`));
211
+ log(chalk.green(`\n---- RUNNING v${this.default.version} SETUP ----`));
212
212
  this.package = fs.read(`${this.firebaseProjectPath}/functions/package.json`) || '{}';
213
213
  this.firebaseJSON = fs.read(`${this.firebaseProjectPath}/firebase.json`) || '{}';
214
214
  this.firebaseRC = fs.read(`${this.firebaseProjectPath}/.firebaserc`) || '{}';