Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion lib/UiModule.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { AbstractModule, Hook } from 'adapt-authoring-core'
import path from 'path'
import UiBuild from './UiBuild.js'

/**
* The main entry-point for the Adapt authoring tool web-app/front-end
* @memberof ui
Expand Down Expand Up @@ -75,6 +75,7 @@ class UiModule extends AbstractModule {
* @return {Promise}
*/
async build () {
const { default: UiBuild } = await import('./UiBuild.js')
const build = new UiBuild({
app: this.app,
log: this.log.bind(this),
Expand Down