I have a shared library of .proto files. I'd like to be able to publish it as an npm module consisting of one .js file per .proto file. This will enable any consumer of the module to import only what they need, and so have a smaller bundle size which is specific to the application.
Is this possible with pbjs?
I have a shared library of
.protofiles. I'd like to be able to publish it as an npm module consisting of one.jsfile per.protofile. This will enable any consumer of the module to import only what they need, and so have a smaller bundle size which is specific to the application.Is this possible with
pbjs?