Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 17 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,23 @@ Any change therefore needs three steps:
CI enforces this: the test workflow rebuilds and fails if the committed
artifacts differ from what `src/` produces.

Note that merging to `main` only redeploys the web component to the CDN. The
React and Vue entry points are published to GitHub Packages by hand
(`npm publish`), so a merged fix is not a released fix.
## Releasing

Merging to `main` only redeploys the web component to the CDN. The React and Vue
entry points reach customers through
[npm](https://www.npmjs.com/package/@parcellab/js-plugin-utils), published by
hand — **so a merged fix is not a released fix.**

```bash
npm ci && npm test && npm run build
# bump "version" in package.json — npm rejects republishing an existing version
npm pack --dry-run # confirm only v3/ and v5/ are included
npm login # credentials in LastPass
npm publish --access public
npm view @parcellab/js-plugin-utils version
```

Publishing needs write access to the `@parcellab` scope on npm.

# Breaking Changes

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@parcellab/js-plugin-utils",
"version": "1.0.6",
"version": "1.0.7",
"description": "Utils for using the parcelLab js plugin with different frameworks (react/vue)",
"private": false,
"files": [
Expand Down
Loading