From cb55ec8706eb2d781a3a58531d59f7e584aef90b Mon Sep 17 00:00:00 2001 From: Anton Lavrenov Date: Thu, 23 Sep 2021 16:17:14 -0500 Subject: [PATCH] export fixes --- CHANGELOG.md | 4 ++++ package.json | 12 +++++++++++- test/{import-test.js => import-test.cjs} | 6 ------ 3 files changed, 15 insertions(+), 7 deletions(-) rename test/{import-test.js => import-test.cjs} (56%) diff --git a/CHANGELOG.md b/CHANGELOG.md index 92108e61..9ab78712 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/). +- Return +- Fix arrow rendering when dash is used +- Fix `dbltap` trigger when multi-touch is used + ## 8.1.4 - Fix `dblclick` event when `cancelBubble` is used. diff --git a/package.json b/package.json index dd6331d8..ec9c335b 100644 --- a/package.json +++ b/package.json @@ -13,11 +13,21 @@ "browser": "./lib/index.js", "typings": "./lib/index-types.d.ts", "type": "module", + "exports": { + "node": { + "import": "./lib/index-node.js", + "require": "./cmj/index-node.js" + }, + "browser": { + "import": "./lib/index.js", + "require": "./cmj/index.js" + } + }, "scripts": { "start": "npm run test:watch", "compile": "npm run clean && npm run tsc && cp ./src/index-types.d.ts ./lib/index-types.d.ts && npm run rollup && cp ./package-cmj.json ./cmj/package.json && cp ./src/index-types.d.ts ./cmj/index-types.d.ts", "build": "npm run compile && cp ./src/index-types.d.ts ./lib && gulp build && node ./rename-imports.mjs", - "test:import": "npm run build && node ./test/import-test.js &&node ./test/import-test.mjs", + "test:import": "npm run build && node ./test/import-test.cjs &&node ./test/import-test.mjs", "test": "npm run test:browser && npm run test:node", "test:build": "parcel build ./test/unit-tests.html --dist-dir test-build --target none --public-url ./ --no-source-maps", "test:browser": "npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security", diff --git a/test/import-test.js b/test/import-test.cjs similarity index 56% rename from test/import-test.js rename to test/import-test.cjs index 5057c5b9..d09109f5 100644 --- a/test/import-test.js +++ b/test/import-test.cjs @@ -1,9 +1,3 @@ -function equal(val1, val2, message) { - if (val1 !== val2) { - throw new Error('Not passed: ' + message); - } -} - // try to import only core const Konva = require('../cmj').default;