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 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 <jeromewus@gmail.com>" ,
Original file line number Diff line number Diff line change @@ -4,14 +4,15 @@ const fs = require("fs");
44const NPM_URL = "https://registry.npmjs.org" ;
55const ROOT = "public/assets" ;
66
7- const FFMPEG_VERSION = "0.12.2 " ;
7+ const FFMPEG_VERSION = "0.12.3 " ;
88const 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
1112const FFMPEG_TGZ = `ffmpeg-${ FFMPEG_VERSION } .tgz` ;
1213const UTIL_TGZ = `util-${ UTIL_VERSION } .tgz` ;
1314const 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
1617const FFMPEG_TGZ_URL = `${ NPM_URL } /@ffmpeg/ffmpeg/-/${ FFMPEG_TGZ } ` ;
1718const UTIL_TGZ_URL = `${ NPM_URL } /@ffmpeg/util/-/${ UTIL_TGZ } ` ;
You can’t perform that action at this time.
0 commit comments