@companyhelm/protos 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +10 -4
- package/dist/gen/buf/validate/validate_pb.d.ts +4766 -0
- package/dist/gen/buf/validate/validate_pb.js +359 -0
- package/dist/gen/companyhelm/runner/v1/runner_pb.d.ts +12 -48
- package/dist/gen/companyhelm/runner/v1/runner_pb.js +32 -37
- package/dist/proto/companyhelm/runner/v1/runner.proto +6 -22
- package/package.json +9 -2
- package/dist/gen/agent_runner/proto/validate_pb.d.ts +0 -57
- package/dist/gen/agent_runner/proto/validate_pb.js +0 -31
- package/dist/proto/agent_runner/proto/validate.proto +0 -21
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
NPM package source for CompanyHelm protobuf bindings, generated with Buf.
|
|
4
4
|
|
|
5
|
+
Install package:
|
|
6
|
+
```
|
|
7
|
+
npm i @companyhelm/protos
|
|
8
|
+
```
|
|
9
|
+
|
|
5
10
|
## Local build
|
|
6
11
|
|
|
7
12
|
```bash
|
|
@@ -21,9 +26,10 @@ npm run build
|
|
|
21
26
|
|
|
22
27
|
## Publish
|
|
23
28
|
|
|
24
|
-
Publishing to [
|
|
29
|
+
Publishing to [@companyhelm/protos](https://www.npmjs.com/package/@companyhelm/protos) is automated by GitHub Actions:
|
|
25
30
|
|
|
26
|
-
|
|
27
|
-
|
|
31
|
+
```
|
|
32
|
+
npm version patch|minor|major
|
|
33
|
+
```
|
|
28
34
|
|
|
29
|
-
|
|
35
|
+
Then push changes, this will publish a new package with the version already bumped.
|