Removed last third source dependency

This commit is contained in:
WolverinDEV 2019-06-22 15:59:16 +02:00
parent b2b201c859
commit f705541a6f
3 changed files with 5293 additions and 2 deletions

View file

@ -9,6 +9,14 @@
"path" => "./", "path" => "./",
"local-path" => "./shared/html/" "local-path" => "./shared/html/"
], ],
[ /* shared javascript files (WebRTC adapter) */
"type" => "js",
"search-pattern" => "/.*\.js$/",
"build-target" => "dev|rel",
"path" => "adapter/",
"local-path" => "./shared/adapter/"
],
[ /* shared javascript files (development mode only) */ [ /* shared javascript files (development mode only) */
"type" => "js", "type" => "js",
"search-pattern" => "/.*\.js$/", "search-pattern" => "/.*\.js$/",
@ -184,7 +192,7 @@
"path" => "js/", "path" => "js/",
"local-path" => "./shared/generated/" "local-path" => "./shared/generated/"
], ]
]; ];
$APP_FILE_LIST_WEB_SOURCE = [ $APP_FILE_LIST_WEB_SOURCE = [

File diff suppressed because it is too large Load diff

View file

@ -489,7 +489,7 @@ const loader_javascript = {
await loader.load_scripts([ await loader.load_scripts([
["vendor/bbcode/xbbcode.js"], ["vendor/bbcode/xbbcode.js"],
["vendor/moment/moment.js"], ["vendor/moment/moment.js"],
["https://webrtc.github.io/adapter/adapter-latest.js"] ["adapter/adapter-latest.js", "https://webrtc.github.io/adapter/adapter-latest.js"]
]); ]);
if(app.type == app.Type.WEB_RELEASE || app.type == app.Type.CLIENT_RELEASE) { if(app.type == app.Type.WEB_RELEASE || app.type == app.Type.CLIENT_RELEASE) {