Rolled back webpack changes in Choices.js

This commit is contained in:
Darren Mackintosh 2019-03-15 16:57:35 +00:00 committed by GitHub
parent 03a45094b7
commit aceb838988
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,4 +1,3 @@
/* eslint-disable import/prefer-default-export */
import Fuse from 'fuse.js'; import Fuse from 'fuse.js';
import merge from 'deepmerge'; import merge from 'deepmerge';
@ -44,7 +43,7 @@ import {
* Choices * Choices
* @author Josh Johnson<josh@joshuajohnson.co.uk> * @author Josh Johnson<josh@joshuajohnson.co.uk>
*/ */
export class Choices { class Choices {
constructor(element = '[data-choice]', userConfig = {}) { constructor(element = '[data-choice]', userConfig = {}) {
if (isType('String', element)) { if (isType('String', element)) {
const elements = Array.from(document.querySelectorAll(element)); const elements = Array.from(document.querySelectorAll(element));
@ -2084,3 +2083,5 @@ export class Choices {
} }
Choices.userDefaults = {}; Choices.userDefaults = {};
// We cannot export default here due to Webpack: https://github.com/webpack/webpack/issues/3929
module.exports = Choices;