@xuda.io/runtime-bundle 1.0.1127 → 1.0.1128
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/js/xuda-runtime-bundle.js +3 -3
- package/js/xuda-runtime-bundle.min.js +1 -1
- package/js/xuda-runtime-mini-bundle.js +2 -2
- package/js/xuda-runtime-mini-bundle.min.js +1 -1
- package/js/xuda-runtime-slim.js +3 -3
- package/js/xuda-runtime-slim.min.es.js +3 -3
- package/js/xuda-runtime-slim.min.js +1 -1
- package/js/xuda-server-bundle.min.mjs +1 -1
- package/js/xuda-server-bundle.mjs +2 -2
- package/js/xuda-worker-bundle.js +2 -2
- package/js/xuda-worker-bundle.min.js +1 -1
- package/package.json +1 -1
|
@@ -5978,7 +5978,7 @@ func.utils.get_plugin_resource = function (SESSION_ID, plugin_name, plugin_resou
|
|
|
5978
5978
|
return `${_conf.plugins_drive_path}/${_session.app_id}/node_modules/${plugin_name}/${resource}`;
|
|
5979
5979
|
} else {
|
|
5980
5980
|
// return `./node_modules/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
5981
|
-
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
5981
|
+
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}&ts=${_session?.opt?.app_build_id || 0}`;
|
|
5982
5982
|
}
|
|
5983
5983
|
};
|
|
5984
5984
|
|
|
@@ -6054,7 +6054,7 @@ func.utils.get_plugin_npm_cdn = async function (SESSION_ID, plugin_name, resourc
|
|
|
6054
6054
|
return `../../plugins/${plugin_name}/${resource}`;
|
|
6055
6055
|
}
|
|
6056
6056
|
|
|
6057
|
-
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
6057
|
+
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}&ts=${_session?.opt?.app_build_id || 0}`;
|
|
6058
6058
|
};
|
|
6059
6059
|
|
|
6060
6060
|
return get_path(resource);
|
package/js/xuda-worker-bundle.js
CHANGED
|
@@ -5978,7 +5978,7 @@ func.utils.get_plugin_resource = function (SESSION_ID, plugin_name, plugin_resou
|
|
|
5978
5978
|
return `${_conf.plugins_drive_path}/${_session.app_id}/node_modules/${plugin_name}/${resource}`;
|
|
5979
5979
|
} else {
|
|
5980
5980
|
// return `./node_modules/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
5981
|
-
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
5981
|
+
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}&ts=${_session?.opt?.app_build_id || 0}`;
|
|
5982
5982
|
}
|
|
5983
5983
|
};
|
|
5984
5984
|
|
|
@@ -6054,7 +6054,7 @@ func.utils.get_plugin_npm_cdn = async function (SESSION_ID, plugin_name, resourc
|
|
|
6054
6054
|
return `../../plugins/${plugin_name}/${resource}`;
|
|
6055
6055
|
}
|
|
6056
6056
|
|
|
6057
|
-
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}`;
|
|
6057
|
+
return `https://${_session.domain}/plugins/${plugin_name}/${resource}?app_id=${_session.app_id}&ts=${_session?.opt?.app_build_id || 0}`;
|
|
6058
6058
|
};
|
|
6059
6059
|
|
|
6060
6060
|
return get_path(resource);
|