@revideo/cli 0.10.3 → 0.10.4

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 +5 -5
package/dist/index.js CHANGED
@@ -6,10 +6,11 @@ const commander_1 = require("commander");
6
6
  const editor_1 = require("./editor");
7
7
  const index_1 = require("./server/index");
8
8
  const program = new commander_1.Command();
9
+ const VERSION = '0.10.4';
9
10
  program
10
11
  .name('revideo')
11
12
  .description('CLI to interact with the revideo service')
12
- .version('0.10.3');
13
+ .version(VERSION);
13
14
  program
14
15
  .command('serve')
15
16
  .description('Exposes a render endpoint to render videos from a project file. Automatically rebuilds the project when the project file changes. Use for local development.')
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@revideo/cli",
3
- "version": "0.10.3",
3
+ "version": "0.10.4",
4
4
  "description": "A CLI for revideo",
5
5
  "main": "dist/index.js",
6
6
  "author": "revideo",
@@ -25,14 +25,14 @@
25
25
  "typescript": "^5.4.3"
26
26
  },
27
27
  "dependencies": {
28
- "@revideo/renderer": "0.10.3",
29
- "@revideo/telemetry": "0.10.3",
30
- "@revideo/vite-plugin": "0.10.3",
28
+ "@revideo/renderer": "0.10.4",
29
+ "@revideo/telemetry": "0.10.4",
30
+ "@revideo/vite-plugin": "0.10.4",
31
31
  "chokidar": "^3.5.3",
32
32
  "commander": "^12.0.0",
33
33
  "cors": "^2.8.5",
34
34
  "express": "^4.19.2",
35
35
  "uuid": "^9.0.1"
36
36
  },
37
- "gitHead": "e6c34e7c74cb9027ea05857c7193d2ec12ed5a51"
37
+ "gitHead": "160fc155c2c757622bb46c91673f878ab48ed9cf"
38
38
  }