firevault 0.2.0-beta.1 → 0.2.0-beta.2

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/dist/index.js +2 -1
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -12,11 +12,12 @@ import { setupGithubActionCommand } from "./commands/setupGithubAction.js";
12
12
  import { restorePreviewCommand } from "./commands/restorePreview.js";
13
13
  import { restoreLocalCommand } from "./commands/restoreLocal.js";
14
14
  import { restoreFirestoreCommand } from "./commands/restoreFirestore.js";
15
+ import packageJson from "../package.json" with { type: "json" };
15
16
  const program = new Command();
16
17
  program
17
18
  .name("firevault")
18
19
  .description("Undo button for Firestore.")
19
- .version("0.2.0-beta.0");
20
+ .version(packageJson.version);
20
21
  program.addCommand(initCommand);
21
22
  program.addCommand(backupCommand);
22
23
  program.addCommand(commitCommand);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firevault",
3
- "version": "0.2.0-beta.1",
3
+ "version": "0.2.0-beta.2",
4
4
  "description": "Undo button for Firestore. Git-style history, rollback, and recovery for Firestore projects.",
5
5
  "keywords": [
6
6
  "firebase",