update CHANGELOG with new version

This commit is contained in:
Anton Lavrenov 2021-09-24 06:39:30 -05:00
parent 7a6faebfc4
commit 011ca46535
4 changed files with 6 additions and 12 deletions

View File

@ -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.2.1
- Fix `package.json` exports.
## 8.2.0
- Restore build in CommonJS. `const Konva = require('konva/cmj').default;`

View File

@ -8,7 +8,7 @@
* Konva JavaScript Framework v8.2.0
* http://konvajs.org/
* Licensed under the MIT
* Date: Thu Sep 23 2021
* Date: Fri Sep 24 2021
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)

2
konva.min.js vendored
View File

@ -3,7 +3,7 @@
* Konva JavaScript Framework v8.2.0
* http://konvajs.org/
* Licensed under the MIT
* Date: Thu Sep 23 2021
* Date: Fri Sep 24 2021
*
* Original work Copyright (C) 2011 - 2013 by Eric Rowell (KineticJS)
* Modified work Copyright (C) 2014 - present by Anton Lavrenov (Konva)

View File

@ -13,16 +13,6 @@
"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",