pinafore/src/routes/_utils/asyncModules.js

54 lines
1.9 KiB
JavaScript
Raw Normal View History

const getDefault = mod => mod.default
2018-01-25 18:03:34 +01:00
export const importTimeline = () => import(
2018-01-28 01:35:44 +01:00
/* webpackChunkName: 'Timeline' */ '../_components/timeline/Timeline.html'
).then(getDefault)
2018-01-15 08:24:27 +01:00
2018-01-25 18:03:34 +01:00
export const importIntersectionObserver = () => import(
2018-01-19 16:17:33 +01:00
/* webpackChunkName: 'intersection-observer' */ 'intersection-observer'
)
2018-01-25 18:03:34 +01:00
export const importRequestIdleCallback = () => import(
2018-01-17 09:06:24 +01:00
/* webpackChunkName: 'requestidlecallback' */ 'requestidlecallback'
)
2018-03-21 17:38:20 +01:00
export const importWebAnimationPolyfill = () => import(
/* webpackChunkName: 'web-animations-js' */ 'web-animations-js'
)
export const importIndexedDBGetAllShim = () => import(
/* webpackChunkName: 'indexeddb-getall-shim' */ 'indexeddb-getall-shim'
)
export const importCustomElementsPolyfill = () => import(
/* webpackChunkName: '@webcomponents/custom-elements' */ '@webcomponents/custom-elements'
)
export const importPageLifecycle = () => import(
/* webpackChunkName: 'page-lifecycle' */ 'page-lifecycle/dist/lifecycle.mjs'
).then(getDefault)
2018-02-11 22:46:57 +01:00
export const importWebSocketClient = () => import(
/* webpackChunkName: '@gamestdio/websocket' */ '@gamestdio/websocket'
).then(getDefault)
2018-02-15 06:51:34 +01:00
2018-04-21 17:45:41 +02:00
export const importVirtualList = () => import(
/* webpackChunkName: 'VirtualList.html' */ '../_components/virtualList/VirtualList.html'
).then(getDefault)
2018-04-21 17:45:41 +02:00
export const importList = () => import(
/* webpackChunkName: 'List.html' */ '../_components/list/List.html'
).then(getDefault)
2018-04-21 17:45:41 +02:00
export const importStatusVirtualListItem = () => import(
/* webpackChunkName: 'StatusVirtualListItem.html' */ '../_components/timeline/StatusVirtualListItem.html'
).then(getDefault)
2018-04-21 17:45:41 +02:00
export const importNotificationVirtualListItem = () => import(
/* webpackChunkName: 'NotificationVirtualListItem.html' */ '../_components/timeline/NotificationVirtualListItem.html'
).then(getDefault)
export const importDatabase = () => import(
/* webpackChunkName: 'database.js' */ '../_database/databaseApis.js'
)