Skip to content

Commit

Permalink
Add connect-es/connect-web v0.8.1 and prost v0.2.2 (#386)
Browse files Browse the repository at this point in the history
  • Loading branch information
app-token-plugins[bot] authored Feb 27, 2023
1 parent 86f6454 commit c39ac9a
Show file tree
Hide file tree
Showing 19 changed files with 302 additions and 0 deletions.
3 changes: 3 additions & 0 deletions plugins/bufbuild/connect-es/v0.8.1/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!Dockerfile
!package*.json
11 changes: 11 additions & 0 deletions plugins/bufbuild/connect-es/v0.8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1.4
FROM node:18.14.2-alpine3.17 AS build
WORKDIR /app
COPY --link package*.json .
RUN npm ci
RUN sed -i -e 's|/usr/bin/env node|/nodejs/bin/node|g' /app/node_modules/@bufbuild/protoc-gen-connect-es/bin/protoc-gen-connect-es

FROM gcr.io/distroless/nodejs18-debian11
COPY --link --from=build /app /app
USER nobody
ENTRYPOINT [ "/app/node_modules/.bin/protoc-gen-connect-es" ]
19 changes: 19 additions & 0 deletions plugins/bufbuild/connect-es/v0.8.1/buf.plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: v1
name: buf.build/bufbuild/connect-es
plugin_version: v0.8.1
source_url: https://github.com/bufbuild/connect-es
description: Generates code that is compatible with browsers and Node.js for working with Connect, gRPC, and gRPC-Web.
deps:
- plugin: buf.build/bufbuild/es:v1.0.0
output_languages:
- javascript
- typescript
registry:
npm:
import_style: module
rewrite_import_path_suffix: connect.js
deps:
- package: '@bufbuild/connect-web'
version: ^0.8.1
spdx_license_id: Apache-2.0
license_url: https://github.com/bufbuild/connect-es/blob/v0.8.1/LICENSE
97 changes: 97 additions & 0 deletions plugins/bufbuild/connect-es/v0.8.1/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions plugins/bufbuild/connect-es/v0.8.1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "plugins-bufbuild-connect-es",
"version": "1.0.0",
"dependencies": {
"@bufbuild/protoc-gen-connect-es": "0.8.1"
}
}
3 changes: 3 additions & 0 deletions plugins/bufbuild/connect-web/v0.8.1/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
*
!Dockerfile
!package*.json
11 changes: 11 additions & 0 deletions plugins/bufbuild/connect-web/v0.8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1.4
FROM node:18.14.2-alpine3.17 AS build
WORKDIR /app
COPY --link package*.json .
RUN npm ci
RUN sed -i -e 's|/usr/bin/env node|/nodejs/bin/node|g' /app/node_modules/@bufbuild/protoc-gen-connect-web/bin/protoc-gen-connect-web

FROM gcr.io/distroless/nodejs18-debian11
COPY --link --from=build /app /app
USER nobody
ENTRYPOINT [ "/app/node_modules/.bin/protoc-gen-connect-web" ]
19 changes: 19 additions & 0 deletions plugins/bufbuild/connect-web/v0.8.1/buf.plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
version: v1
name: buf.build/bufbuild/connect-web
plugin_version: v0.8.1
source_url: https://github.com/bufbuild/connect-web
description: Generates client stubs for calling Connect and gRPC-Web services from a web browser.
deps:
- plugin: buf.build/bufbuild/es:v1.0.0
output_languages:
- javascript
- typescript
registry:
npm:
import_style: module
rewrite_import_path_suffix: connectweb.js
deps:
- package: '@bufbuild/connect-web'
version: ^0.8.1
spdx_license_id: Apache-2.0
license_url: https://github.com/bufbuild/connect-web/blob/v0.8.1/LICENSE
97 changes: 97 additions & 0 deletions plugins/bufbuild/connect-web/v0.8.1/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions plugins/bufbuild/connect-web/v0.8.1/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"name": "plugins-bufbuild-connect-web",
"version": "1.0.0",
"dependencies": {
"@bufbuild/protoc-gen-connect-web": "0.8.1"
}
}
2 changes: 2 additions & 0 deletions plugins/community/neoeinstein-prost/v0.2.2/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*
!Dockerfile
11 changes: 11 additions & 0 deletions plugins/community/neoeinstein-prost/v0.2.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# syntax=docker/dockerfile:1.4
FROM rust:1.67.1-alpine3.17 as builder
RUN apk add --no-cache musl-dev
WORKDIR /app
RUN --mount=type=cache,target=/usr/local/cargo/registry --mount=type=cache,target=/root/target \
cargo install protoc-gen-prost --version 0.2.2 --locked --root /app

FROM gcr.io/distroless/static
COPY --from=builder /app/bin/protoc-gen-prost /protoc-gen-prost
USER nobody
ENTRYPOINT ["/protoc-gen-prost"]
9 changes: 9 additions & 0 deletions plugins/community/neoeinstein-prost/v0.2.2/buf.plugin.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
version: v1
name: buf.build/community/neoeinstein-prost
plugin_version: v0.2.2
source_url: https://github.com/neoeinstein/protoc-gen-prost
description: Generates code using the Prost! code generation engine.
output_languages:
- rust
spdx_license_id: Apache-2.0
license_url: https://github.com/neoeinstein/protoc-gen-prost/blob/protoc-gen-prost-v0.2.2/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:rlgvSiVPbFsNcxQ5J0doxYt5PXq+nwH88+OWxMM0JFY=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:/VwzdJehx/lKOB5MGj0zNhg3uVpZZ3pht7Lr88YKHlY=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:S55u05iTHpoDP+oxRnTXmkYj3uSppsqMeQRdEadR2Ks=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:2n8dzNsurN0RXpBwdJV306WX2ejA8yrX7f/IEp6IYBY=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:JsjQgBmoYPRx2D2Qy1BNCDAH8tLofGgjZp46Lm4Aii8=
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
h1:wJlYOc3eSFsYLteXBSvMtseQjbKBGUc2fP2dKKMZAbc=

0 comments on commit c39ac9a

Please sign in to comment.