Removed last third source dependency
parent
b2b201c859
commit
f705541a6f
10
files.php
10
files.php
|
@ -9,6 +9,14 @@
|
|||
"path" => "./",
|
||||
"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) */
|
||||
"type" => "js",
|
||||
"search-pattern" => "/.*\.js$/",
|
||||
|
@ -184,7 +192,7 @@
|
|||
|
||||
"path" => "js/",
|
||||
"local-path" => "./shared/generated/"
|
||||
],
|
||||
]
|
||||
];
|
||||
|
||||
$APP_FILE_LIST_WEB_SOURCE = [
|
||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -489,7 +489,7 @@ const loader_javascript = {
|
|||
await loader.load_scripts([
|
||||
["vendor/bbcode/xbbcode.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) {
|
||||
|
|
Loading…
Reference in New Issue