Skip to content

Commit 8498d96

Browse files
committed
Upgrade vanilla-app to the latest version
1 parent 2b06479 commit 8498d96

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

apps/vanilla-app/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@
44
"description": "browser example",
55
"private": true,
66
"scripts": {
7-
"prestart": "node ../../scripts/download-assets.js",
7+
"download": "node ../../scripts/download-assets.js",
8+
"prestart": "npm run download",
89
"start": "node server.js"
910
},
1011
"author": "Jerome Wu <[email protected]>",

scripts/download-assets.js

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,15 @@ const fs = require("fs");
44
const NPM_URL = "https://registry.npmjs.org";
55
const ROOT = "public/assets";
66

7-
const FFMPEG_VERSION = "0.12.2";
7+
const FFMPEG_VERSION = "0.12.3";
88
const UTIL_VERSION = "0.12.0";
9-
const CORE_VERSION = "0.12.1";
9+
const CORE_VERSION = "0.12.2";
10+
const CORE_MT_VERSION = "0.12.2";
1011

1112
const FFMPEG_TGZ = `ffmpeg-${FFMPEG_VERSION}.tgz`;
1213
const UTIL_TGZ = `util-${UTIL_VERSION}.tgz`;
1314
const CORE_TGZ = `core-${CORE_VERSION}.tgz`;
14-
const CORE_MT_TGZ = `core-mt-${CORE_VERSION}.tgz`;
15+
const CORE_MT_TGZ = `core-mt-${CORE_MT_VERSION}.tgz`;
1516

1617
const FFMPEG_TGZ_URL = `${NPM_URL}/@ffmpeg/ffmpeg/-/${FFMPEG_TGZ}`;
1718
const UTIL_TGZ_URL = `${NPM_URL}/@ffmpeg/util/-/${UTIL_TGZ}`;

0 commit comments

Comments
 (0)