Skip to content

Commit

Permalink
fix: run release in each package
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Aug 8, 2024
1 parent ed5a2bf commit ad67ad4
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"dep-check": "aegir run dep-check",
"doc-check": "aegir run doc-check",
"release": "run-s build docs:no-publish npm:release docs",
"npm:release": "aegir release",
"npm:release": "aegir run release",
"docs": "aegir docs",
"docs:no-publish": "aegir docs --publish false"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/protons-runtime/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@
# About

<!--
!IMPORTANT!
Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.
To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts
To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.
-->

This module contains serialization/deserialization code used when encoding/decoding protobufs.

It should be declared as a dependency of your project:
Expand Down
15 changes: 15 additions & 0 deletions packages/protons/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,21 @@
# About

<!--
!IMPORTANT!
Everything in this README between "# About" and "# Install" is automatically
generated and will be overwritten the next time the doc generator is run.
To make changes to this section, please update the @packageDocumentation section
of src/index.js or src/index.ts
To experiment with formatting, please run "npm run docs" from the root of this
repo and examine the changes made.
-->

`protons` is a high performance implementation of [Protocol Buffers v3](https://protobuf.dev/programming-guides/proto3/).

It transpiles code to TypeScript and supports BigInts for 64 bit types.
Expand Down

0 comments on commit ad67ad4

Please sign in to comment.