diff --git a/.changeset/config.json b/.changeset/config.json index ad6f18a..dcbfc79 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,5 +7,6 @@ "access": "restricted", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": [] + "ignore": [], + "privatePackages": { "version": true, "tag": true } } diff --git a/.changeset/dark-terms-eat.md b/.changeset/dark-terms-eat.md new file mode 100644 index 0000000..4ed4870 --- /dev/null +++ b/.changeset/dark-terms-eat.md @@ -0,0 +1,5 @@ +--- +'@archilogic/penpal': patch +--- + +Add missing publish and version scripts diff --git a/package.json b/package.json index c02a9e6..ca4e1b7 100644 --- a/package.json +++ b/package.json @@ -54,6 +54,9 @@ "lint": "eslint --cache --fix", "format": "prettier --write \"**/*.{json,ts,js,cjs,md,html}\"", "changeset": "changeset", + "changeset:auto": "npx changeset-conventional-commits", + "version": "changeset version", + "publish": "changeset publish", "test": "npm-run-all test:browser test:node", "test:browser": "node scripts/test.js", "test:node": "node --test test/nodeWorker.spec.js",