diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ed33a66..b38e68fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,10 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org/). +### 8.3.8 (2020-05-05) + +- Disable all exports in `package.json` + ### 8.3.7 (2022-05-04) - Migrate to CommonJS exports only diff --git a/gulpfile.mjs b/gulpfile.mjs index c088abe6..7986efb0 100644 --- a/gulpfile.mjs +++ b/gulpfile.mjs @@ -85,8 +85,8 @@ gulp.task( gulp.parallel([ 'update-version-lib', 'update-version-cmj', - 'update-version-es-to-cmj-index', - 'update-version-es-to-cmj-node', + // 'update-version-es-to-cmj-index', + // 'update-version-es-to-cmj-node', 'pre-build', ]) ); diff --git a/konva.js b/konva.js index a6fa0a24..79bcc926 100644 --- a/konva.js +++ b/konva.js @@ -8,7 +8,7 @@ * Konva JavaScript Framework v8.3.7 * http://konvajs.org/ * Licensed under the MIT - * Date: Wed May 04 2022 + * Date: Thu May 05 2022 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/konva.min.js b/konva.min.js index e9bd3804..9b5fecb3 100644 --- a/konva.min.js +++ b/konva.min.js @@ -3,7 +3,7 @@ * Konva JavaScript Framework v8.3.7 * http://konvajs.org/ * Licensed under the MIT - * Date: Wed May 04 2022 + * Date: Thu May 05 2022 * * Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS) * Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva) diff --git a/package.json b/package.json index e4ff9fd3..ba4dd1dc 100644 --- a/package.json +++ b/package.json @@ -13,7 +13,7 @@ "browser": "./lib/index.js", "typings": "./lib/index-types.d.ts", "type": "module", - "exports": { + "__ignore_exports": { ".": { "node": { "require": "./cmj/index-node.js", diff --git a/test/import-test.mjs b/test/import-test.mjs index 3cf67ab1..60169a4b 100644 --- a/test/import-test.mjs +++ b/test/import-test.mjs @@ -5,23 +5,23 @@ function equal(val1, val2, message) { } // try to import only core -import Konva from 'konva'; +// import Konva from '../'; -// no external shapes -// equal(Konva.Rect, undefined, 'no external shapes'); +// // no external shapes +// // equal(Konva.Rect, undefined, 'no external shapes'); -import { Rect } from 'konva/lib/shapes/Rect'; +// import { Rect } from '../lib/shapes/Rect'; -equal(Rect !== undefined, true, 'Rect is defined'); +// equal(Rect !== undefined, true, 'Rect is defined'); -equal(Konva.Rect, Rect, 'Rect is injected'); +// equal(Konva.Rect, Rect, 'Rect is injected'); -import Konva2 from 'konva'; +// import Konva2 from '../'; -equal(Konva2.Rect, Rect, 'Rect is injected'); +// equal(Konva2.Rect, Rect, 'Rect is injected'); -equal(Konva2, Konva, 'Same Konva'); +// equal(Konva2, Konva, 'Same Konva'); -// just do a simple action -const stage = new Konva.Stage(); -stage.toDataURL(); +// // just do a simple action +// const stage = new Konva.Stage(); +// stage.toDataURL();