Skip to content

Commit 868798c

Browse files
fix(toolkit): set version 0.2.1 and private:true to prevent premature publish (#67)
The release workflow's Changesets action publishes any package whose local version hasn't been published on npm, even without a changeset. This caused @ocpp-debugkit/toolkit@0.2.0 to be auto-published when PR #55 merged with only Phase 0 consolidation code. Fix: set version to 0.2.1 (next available) and private:true to prevent any auto-publishing. private:true will be removed in the release issue (#66) when all v0.2.0 features are complete and we're ready to publish.
1 parent aa6b70e commit 868798c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packages/toolkit/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
{
22
"name": "@ocpp-debugkit/toolkit",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "Open-source DevTools for debugging OCPP charging sessions — parser, normalizer, timeline, failure detection, scenarios, replay, reports, CLI, and React components.",
55
"license": "Apache-2.0",
66
"type": "module",
77
"sideEffects": false,
8+
"private": true,
89
"main": "./dist/index.js",
910
"module": "./dist/index.js",
1011
"types": "./dist/index.d.ts",

0 commit comments

Comments
 (0)