mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 13:38:15 +08:00
export fixes
This commit is contained in:
parent
03b9ac1aaa
commit
cb55ec8706
@ -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.
|
||||
|
12
package.json
12
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",
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user