fix build, add docs

This commit is contained in:
Anton Lavrenov 2021-09-23 16:43:38 -05:00
parent 88e3954c80
commit 7a6faebfc4
6 changed files with 7816 additions and 43 deletions

View File

@ -130,7 +130,7 @@ npm install konva canvas
### CommonJS modules ### CommonJS modules
By default `Konva` is delivered as ES modules. If you need to use CommonJS modules you should use `cmj` bundled version: By default `Konva` is delivered as ES modules. Some environments may automatically take CommonJS version of `Konva`. If it doesn't work for you, try to use `cmj` version explicitly:
```js ```js
const Konva = require('konva/cmj').default; const Konva = require('konva/cmj').default;

7834
konva.js

File diff suppressed because it is too large Load Diff

13
konva.min.js vendored

File diff suppressed because one or more lines are too long

View File

@ -33,7 +33,7 @@
"test:browser": "npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security", "test:browser": "npm run test:build && mocha-headless-chrome -f ./test-build/unit-tests.html -a disable-web-security",
"test:node": "env TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha -r ts-node/register test/unit/**/*.ts --exit && npm run test:import", "test:node": "env TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha -r ts-node/register test/unit/**/*.ts --exit && npm run test:import",
"test:watch": "rm -rf ./parcel-cache && parcel serve ./test/unit-tests.html ./test/manual-tests.html", "test:watch": "rm -rf ./parcel-cache && parcel serve ./test/unit-tests.html ./test/manual-tests.html",
"tsc": "tsc && tsc --build ./tsconfig-cmj.json", "tsc": "tsc --removeComments && tsc --build ./tsconfig-cmj.json",
"rollup": "rollup -c", "rollup": "rollup -c",
"clean": "rm -rf ./lib && rm -rf ./types && rm -rf ./cmj && rm -rf ./test-build", "clean": "rm -rf ./lib && rm -rf ./types && rm -rf ./cmj && rm -rf ./test-build",
"watch": "rollup -c -w", "watch": "rollup -c -w",

View File

@ -25,7 +25,11 @@ export default {
// Allow json resolution // Allow json resolution
// json(), // json(),
// Compile TypeScript files // Compile TypeScript files
typescript({ useTsconfigDeclarationDir: true, abortOnError: false }), typescript({
useTsconfigDeclarationDir: true,
abortOnError: false,
removeComments: false,
}),
// // Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs) // // Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
// commonjs(), // commonjs(),
// // Allow node_modules resolution, so you can use 'external' to control // // Allow node_modules resolution, so you can use 'external' to control

View File

@ -7,7 +7,7 @@
"lib": ["ES2015", "dom"], "lib": ["ES2015", "dom"],
"moduleResolution": "node", "moduleResolution": "node",
"declaration": true, "declaration": true,
"removeComments": true "removeComments": false
// "noImplicitAny": true, // "noImplicitAny": true,
// "strict": true // "strict": true
}, },