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;