File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change 4
4
"description" : " browser example" ,
5
5
"private" : true ,
6
6
"scripts" : {
7
- "prestart" : " node ../../scripts/download-assets.js" ,
7
+ "download" : " node ../../scripts/download-assets.js" ,
8
+ "prestart" : " npm run download" ,
8
9
"start" : " node server.js"
9
10
},
10
11
"author" :
" Jerome Wu <[email protected] >" ,
Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ const fs = require("fs");
4
4
const NPM_URL = "https://registry.npmjs.org" ;
5
5
const ROOT = "public/assets" ;
6
6
7
- const FFMPEG_VERSION = "0.12.2 " ;
7
+ const FFMPEG_VERSION = "0.12.3 " ;
8
8
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" ;
10
11
11
12
const FFMPEG_TGZ = `ffmpeg-${ FFMPEG_VERSION } .tgz` ;
12
13
const UTIL_TGZ = `util-${ UTIL_VERSION } .tgz` ;
13
14
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` ;
15
16
16
17
const FFMPEG_TGZ_URL = `${ NPM_URL } /@ffmpeg/ffmpeg/-/${ FFMPEG_TGZ } ` ;
17
18
const UTIL_TGZ_URL = `${ NPM_URL } /@ffmpeg/util/-/${ UTIL_TGZ } ` ;
You can’t perform that action at this time.
0 commit comments