diff --git a/package.json b/package.json index d60b550..999c5a2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "superellipse-squircle", "private": true, - "version": "0.1.12", + "version": "0.1.13", "type": "module", "main": "index.js", "description": "Smoothest CSS squircles south of Saskatchewan", diff --git a/publish.sh b/publish.sh new file mode 100755 index 0000000..4d8da6e --- /dev/null +++ b/publish.sh @@ -0,0 +1,8 @@ +#!/usr/bin/env sh + +set -e +npm run build +cat package.json | jq "del (.private)" > dist/package.json +cd dist +npm publish +cd -