* change root dit and change way to import modules * update deps to latest versions * use latest tools for building bundles * rewrite webpack config * use nomodule technique for loading modern bundle * inject polyfills by babel usebuiltins * update eslint rules * rename all style files to CSS * use postcss preset env for building styles * proper typescript typing * put all html files to templates folder * etc
16 lines
518 B
TypeScript
16 lines
518 B
TypeScript
import './root.css';
|
|
|
|
import './__copyright/root__copyright.css';
|
|
import './__input/root__input.css';
|
|
import './__preloader/root__preloader.css';
|
|
import './__pinned-comment/root__pinned-comment.css';
|
|
import './__pinned-comments/root__pinned-comments.css';
|
|
import './__show-more/root__show-more.css';
|
|
import './__thread/root__thread.css';
|
|
import './__threads/root__threads.css';
|
|
|
|
import './_theme/_dark/root_theme_dark.css';
|
|
import './_theme/_light/root_theme_light.css';
|
|
|
|
export { Root, ConnectedRoot } from './root';
|