File tree Expand file tree Collapse file tree 1 file changed +1
-9
lines changed
src/app/store/entities/sandboxes/bundler Expand file tree Collapse file tree 1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,7 @@ import logError from '../../../../utils/error';
9
9
10
10
const debug = _debug ( 'cs:app:packager' ) ;
11
11
12
- export const PACKAGER_URL = 'https://cdn.jsdelivr.net/webpack/v3' ;
13
- export const NEW_PACKAGER_URL = 'https://cdn.jsdelivr.net/webpack/v4' ;
12
+ export const PACKAGER_URL = 'https://cdn.jsdelivr.net/webpack/v4' ;
14
13
15
14
const RETRY_COUNT = 10 ;
16
15
@@ -21,13 +20,6 @@ const RETRY_COUNT = 10;
21
20
* @param {string } query The dependencies to call
22
21
*/
23
22
async function requestPackager ( query : string ) {
24
- // Also call new packager to build cache
25
- try {
26
- callApi ( `${ NEW_PACKAGER_URL } /${ query } /manifest.json` ) ;
27
- } catch ( e ) {
28
- console . error ( e ) ;
29
- }
30
-
31
23
let retries = 0 ;
32
24
33
25
while ( true ) {
You can’t perform that action at this time.
0 commit comments