فهرست منبع

Use ES5 exports for non-classes. Fixes bundle examples

Kevin van Zonneveld 9 سال پیش
والد
کامیت
b4350c127d
2فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 1 1
      src/locales/index.js
  2. 1 1
      src/plugins/index.js

+ 1 - 1
src/locales/index.js

@@ -2,7 +2,7 @@
 import en_US from './en_US'
 import ru_RU from './ru_RU'
 
-export {
+module.exports = {
   en_US,
   ru_RU
 }

+ 1 - 1
src/plugins/index.js

@@ -25,7 +25,7 @@ import Present from './Present'
 // Presetters
 import TransloaditBasic from './TransloaditBasic'
 
-export {
+module.exports = {
   Plugin,
   Dummy,
   ProgressBar,