mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
28 lines
1.2 KiB
JavaScript
28 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) 2020 Gitpod GmbH. All rights reserved.
|
|
* Licensed under the GNU Affero General Public License (AGPL).
|
|
* See License-AGPL.txt in the project root for license information.
|
|
*/
|
|
|
|
module.exports = function entrypoints(srcPath, eeSrcPath, isOSSBuild) {
|
|
return {
|
|
'list-workspaces': `${srcPath}/list-workspaces.tsx`,
|
|
'start-workspace': `${srcPath}/start-workspace.tsx`,
|
|
'create-workspace': `${srcPath}/create-workspace.tsx`,
|
|
'create-workspace-from-ref': `${srcPath}/create-workspace-from-ref.tsx`,
|
|
'404': `${srcPath}/404.tsx`,
|
|
'sorry': `${srcPath}/sorry.tsx`,
|
|
'blocked': `${srcPath}/blocked.tsx`,
|
|
'bootanimation': `${srcPath}/bootanimation.ts`,
|
|
'access-control': `${srcPath}/access-control.tsx`,
|
|
'settings': `${srcPath}/settings.tsx`,
|
|
'login': `${srcPath}/login.tsx`,
|
|
'first-steps': `${srcPath}/first-steps.tsx`,
|
|
'tos': `${srcPath}/terms-of-service.tsx`,
|
|
'install-github-app': `${srcPath}/install-github-app.tsx`,
|
|
...(!isOSSBuild && {
|
|
'admin': `${eeSrcPath}/admin.tsx`,
|
|
'license': `${eeSrcPath}/license.tsx`,
|
|
})
|
|
};
|
|
} |