another exports fix

This commit is contained in:
Anton Lavrenov 2019-02-27 18:27:18 -05:00
parent e232cc6550
commit 712d53b86c
3 changed files with 7 additions and 13 deletions

View File

@ -3,7 +3,7 @@
All notable changes to this project will be documented in this file.
This project adheres to [Semantic Versioning](http://semver.org/).
## [3.1.5][2019-02-27]
## [3.1.6][2019-02-27]
* Fix commonjs exports
* Fix global injections

View File

@ -1,11 +1,8 @@
const KonvaInternals = require('./_CoreInternals');
var Konva = require('./_FullInternals');
// add Konva to global variable
// umd build will actually do it
// but it may now it case of modules and bundlers
KonvaInternals._injectGlobal(KonvaInternals);
exports.__esModule = true;
exports['default'] = KonvaInternals;
Konva._injectGlobal(Konva);
exports['default'] = Konva;
Konva.default = Konva;
module.exports = exports['default'];

View File

@ -1,11 +1,8 @@
const Konva = require('./_FullInternals');
var Konva = require('./_FullInternals');
// add Konva to global variable
// umd build will actually do it
// but it may now it case of modules and bundlers
Konva._injectGlobal(Konva);
exports.__esModule = true;
exports['default'] = Konva;
Konva.default = Konva;
module.exports = exports['default'];