mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
fix build, add docs
This commit is contained in:
parent
88e3954c80
commit
7a6faebfc4
@ -130,7 +130,7 @@ npm install konva canvas
|
||||
|
||||
### 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
|
||||
const Konva = require('konva/cmj').default;
|
||||
|
13
konva.min.js
vendored
13
konva.min.js
vendored
File diff suppressed because one or more lines are too long
@ -33,7 +33,7 @@
|
||||
"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: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",
|
||||
"clean": "rm -rf ./lib && rm -rf ./types && rm -rf ./cmj && rm -rf ./test-build",
|
||||
"watch": "rollup -c -w",
|
||||
|
@ -25,7 +25,11 @@ export default {
|
||||
// Allow json resolution
|
||||
// json(),
|
||||
// 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)
|
||||
// commonjs(),
|
||||
// // Allow node_modules resolution, so you can use 'external' to control
|
||||
|
@ -7,7 +7,7 @@
|
||||
"lib": ["ES2015", "dom"],
|
||||
"moduleResolution": "node",
|
||||
"declaration": true,
|
||||
"removeComments": true
|
||||
"removeComments": false
|
||||
// "noImplicitAny": true,
|
||||
// "strict": true
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user