Merge pull request #135 from postor/master

use import and module.export together!
This commit is contained in:
Jeff Nusz 2017-04-07 15:10:37 -07:00 committed by GitHub
commit 006bec026e
2 changed files with 2 additions and 2 deletions

View File

@ -13,4 +13,4 @@
import dat from './src/dat/index'; import dat from './src/dat/index';
module.exports = dat; export default dat;

View File

@ -1272,4 +1272,4 @@ function updateDisplays(controllerArray) {
}); });
} }
module.exports = GUI; export default GUI;