From d42c8b528eb595101954f478e0024e3f079f6fbf Mon Sep 17 00:00:00 2001 From: schneefux Date: Wed, 22 Mar 2017 19:19:26 +0100 Subject: first implementation of fun stats site --- .../assets/bootstrap-material-design/js/index.js | 32 ++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100644 templates/assets/bootstrap-material-design/js/index.js (limited to 'templates/assets/bootstrap-material-design/js/index.js') diff --git a/templates/assets/bootstrap-material-design/js/index.js b/templates/assets/bootstrap-material-design/js/index.js new file mode 100644 index 0000000..b90a2c0 --- /dev/null +++ b/templates/assets/bootstrap-material-design/js/index.js @@ -0,0 +1,32 @@ +/* + * This is the main entry point. + * + * You can import other modules here, including external packages. When bundling using rollup you can mark those modules as external and have them excluded or, if they have a jsnext:main entry in their package.json (like this package does), let rollup bundle them into your dist file. + * + * IMPORTANT NOTE: If you are ultimately creating an iife/self executing bundle for the browser, be sure to: + * import 'babel-polyfill' + * + * at your application entry point. This is necessary for browsers that do not yet support some ES2015 runtime necessities such as Symbol. We do this in `index-iife.js` for our iife rollup bundle. + */ +import 'babel-polyfill' + +// Bootstrap components +import 'bootstrap/dist/js/bootstrap' + +// invalidComponentMatches is currently disabled due to https://github.com/rollup/rollup/issues/428#issuecomment-170066452 +import './checkbox' +import './checkboxInline' +import './collapseInline' +import './file' +import './radio' +import './radioInline' +import './select' +import './switch' +import './text' +import './textarea' + +import './drawer' + +import './ripples' +import './autofill' +import './bootstrapMaterialDesign' -- cgit v1.3.1