diff --git a/release.sh b/release.sh index 5ead12d8..2b4eedee 100755 --- a/release.sh +++ b/release.sh @@ -59,7 +59,7 @@ git tag $1 >/dev/null cd ../konva git push >/dev/null git push --tags >/dev/null -npm publish >/dev/null +npm publish echo "copy konva.js into konva-site" cp ./konva.js ../konva-site/ diff --git a/src/Shape.ts b/src/Shape.ts index 607a5b9b..c327dc12 100644 --- a/src/Shape.ts +++ b/src/Shape.ts @@ -539,7 +539,7 @@ export class Shape< const fillRect = this.getSelfRect(); const applyStroke = !config.skipStroke && this.hasStroke(); - const strokeWidth = (applyStroke && this.strokeWidth()) || 0; + const strokeWidth: number = (applyStroke && this.strokeWidth()) || 0; const fillAndStrokeWidth = fillRect.width + strokeWidth; const fillAndStrokeHeight = fillRect.height + strokeWidth;