-
-
Notifications
You must be signed in to change notification settings - Fork 195
Expand file tree
/
Copy pathloader.js
More file actions
48 lines (46 loc) · 1.86 KB
/
loader.js
File metadata and controls
48 lines (46 loc) · 1.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
/*
* GNU AGPL-3.0 License
*
* Copyright (c) 2021 - present core.ai . All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
*
*/
/**
* Integrated extensions are special core extensions directly loaded through this file.
* While this can be also put into `extensions/default` folder with minimal effort,
* To increase boot speed, we merge all essential phcode extensions in this folder so that
* the build tooling can inline these into a single js file for prod builds.
*
* All core extensions that gets loaded for the 80% userbase must prefer this loading
* instead of default extensions folder.
*/
define(function (require, exports, module) {
require("./icons/main");
require("./RemoteFileAdapter/main");
require("./QuickOpen/main");
require("./Phoenix/main");
require("./InAppNotifications/main");
require("./NoDistractions/main");
require("./Phoenix-live-preview/main");
require("./NavigationAndHistory/main");
require("./RecentProjects/main");
require("./DisplayShortcuts/main");
require("./appUpdater/main");
require("./HtmlTagSyncEdit/main");
require("./indentGuides/main");
require("./CSSColorPreview/main");
require("./TabBar/main");
require("./Bookmarks/main");
});