1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-08-07 23:03:00 +03:00

Standardised module loading system & fixed build system

Fixed broken build system in broken webpack version.
Also updates module system to standardise on ES6 import/exports,
Especially since babel has changed it's 'default' logic for the old
module system.
This commit is contained in:
Dan Brown
2018-11-09 21:17:35 +00:00
parent 5b36ddb12f
commit e3230f8f21
37 changed files with 384 additions and 3372 deletions

View File

@@ -125,4 +125,4 @@ const methods = {
};
module.exports = {template, data, props, methods};
export default {template, data, props, methods};

View File

@@ -1,4 +1,4 @@
const DropZone = require("dropzone");
import DropZone from "dropzone";
const template = `
<div class="dropzone-container">
@@ -60,7 +60,7 @@ const methods = {
}
};
module.exports = {
export default {
template,
props,
mounted,