Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « index « packages « groups « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 95522573b5386d45d9b7ca9a5228030d427f7354 (plain)
1
2
3
4
5
6
7
8
9
10
(async function packageApp() {
  if (window.gon.features.packageListApollo) {
    const newPackageList = await import('~/packages_and_registries/package_registry/pages/list');

    newPackageList.default();
  } else {
    const packageList = await import('~/packages/list/packages_list_app_bundle');
    packageList.default();
  }
})();