mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
51ff72c15e
Summary: Building: - Builds no longer wait for tsc for either client, server, or test targets. All use esbuild which is very fast. - Build still runs tsc, but only to report errors. This may be turned off with `SKIP_TSC=1` env var. - Grist-core continues to build using tsc. - Esbuild requires ES6 module semantics. Typescript's esModuleInterop is turned on, so that tsc accepts and enforces correct usage. - Client-side code is watched and bundled by webpack as before (using esbuild-loader) Code changes: - Imports must now follow ES6 semantics: `import * as X from ...` produces a module object; to import functions or class instances, use `import X from ...`. - Everything is now built with isolatedModules flag. Some exports were updated for it. Packages: - Upgraded browserify dependency, and related packages (used for the distribution-building step). - Building the distribution now uses esbuild's minification. babel-minify is no longer used. Test Plan: Should have no behavior changes, existing tests should pass, and docker image should build too. Reviewers: georgegevoian Reviewed By: georgegevoian Subscribers: alexmojaki Differential Revision: https://phab.getgrist.com/D3506 |
||
---|---|---|
.. | ||
AccountPage.ts | ||
AccountWidget.ts | ||
AddNewButton.ts | ||
ApiKey.ts | ||
App.css | ||
App.ts | ||
AppHeader.ts | ||
AppUI.ts | ||
BillingForm.ts | ||
BillingPage.ts | ||
BillingPageCss.ts | ||
BillingPlanManagers.ts | ||
BottomBar.ts | ||
buttons.ts | ||
CellContextMenu.ts | ||
CodeHighlight.ts | ||
ColumnFilterMenu.ts | ||
contextMenu.ts | ||
cssInput.ts | ||
CustomSectionConfig.ts | ||
CustomThemes.ts | ||
DocHistory.ts | ||
DocMenu.ts | ||
DocMenuCss.ts | ||
DocTour.ts | ||
DocumentSettings.ts | ||
errorPages.ts | ||
ExampleCard.ts | ||
ExampleInfo.ts | ||
FieldConfig.ts | ||
FieldMenus.ts | ||
FileDialog.ts | ||
FilterBar.ts | ||
forms.ts | ||
googleAuth.ts | ||
GridOptions.ts | ||
GridViewMenus.ts | ||
HomeImports.ts | ||
HomeIntro.ts | ||
HomeLeftPane.ts | ||
LeftPanelCommon.ts | ||
MakeCopyMenu.ts | ||
MenuToggle.ts | ||
modals.ts | ||
mouseDrag.ts | ||
MultiSelector.ts | ||
NotifyUI.ts | ||
OnBoardingPopups.ts | ||
OpenUserManager.ts | ||
OpenVideoTour.ts | ||
PagePanels.ts | ||
Pages.ts | ||
PageWidgetPicker.ts | ||
PinnedDocs.ts | ||
ProductUpgradesStub.ts | ||
resizeHandle.ts | ||
RightPanel.ts | ||
RowContextMenu.ts | ||
selectBy.ts | ||
sendToDrive.ts | ||
setupPage.ts | ||
shadowScroll.ts | ||
ShareMenu.ts | ||
SiteSwitcher.ts | ||
TemplateDocs.ts | ||
Tools.ts | ||
tooltips.ts | ||
TopBar.ts | ||
TopBarCss.ts | ||
transientInput.ts | ||
transitions.ts | ||
TreeViewComponent.ts | ||
TreeViewComponentCss.ts | ||
TriggerFormulas.ts | ||
UserImage.ts | ||
UserItem.ts | ||
UserManager.ts | ||
ViewLayoutMenu.ts | ||
viewport.ts | ||
ViewSectionMenu.ts | ||
VisibleFieldsConfig.ts | ||
WelcomePage.ts | ||
WelcomeQuestions.ts | ||
welcomeTour.ts | ||
WidgetTitle.ts | ||
widgetTypes.ts |