├── .github └── renovate.json ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.json ├── Dockerfile ├── LICENSE ├── README.md ├── bin └── protoc-gen-nestjs ├── demo ├── .gitignore ├── README.md ├── buf.gen.yaml ├── package.json ├── proto │ └── eliza.proto ├── src │ ├── app.module.ts │ ├── eliza.controller.ts │ └── index.ts └── tsconfig.json ├── package.json ├── plugin ├── buf.plugin.yaml └── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── src └── index.ts └── tsconfig.json /.github/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/.github/renovate.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | link-workspace-packages=false -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "printWidth": 120 3 | } 4 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/README.md -------------------------------------------------------------------------------- /bin/protoc-gen-nestjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/bin/protoc-gen-nestjs -------------------------------------------------------------------------------- /demo/.gitignore: -------------------------------------------------------------------------------- 1 | /gen 2 | buf.gen.dev.yaml -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/buf.gen.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/buf.gen.yaml -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/proto/eliza.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/proto/eliza.proto -------------------------------------------------------------------------------- /demo/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/src/app.module.ts -------------------------------------------------------------------------------- /demo/src/eliza.controller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/src/eliza.controller.ts -------------------------------------------------------------------------------- /demo/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/src/index.ts -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/package.json -------------------------------------------------------------------------------- /plugin/buf.plugin.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/plugin/buf.plugin.yaml -------------------------------------------------------------------------------- /plugin/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/plugin/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yukukotani/protoc-gen-nestjs/HEAD/tsconfig.json --------------------------------------------------------------------------------