diff --git a/CHANGELOG.md b/CHANGELOG.md index aa2cbf34..2f4510ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/src/Core.ts b/src/Core.ts index 50bafc78..d65a65a4 100644 --- a/src/Core.ts +++ b/src/Core.ts @@ -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']; diff --git a/src/index.ts b/src/index.ts index 86a47912..d65a65a4 100644 --- a/src/index.ts +++ b/src/index.ts @@ -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'];