@dcl/protocol 1.0.0-3237582415.commit-28fe6ac → 1.0.0-3239222053.commit-c9e426d

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 CHANGED
@@ -4,8 +4,8 @@ This module is intended to be installed as a node_module via `npm install @dcl/p
4
4
 
5
5
  It is recommended that every project compiles the needed files only as part of its build process. Some imports are required:
6
6
 
7
- - `-I=$(pwd)/node_modules/protobufjs`
8
- - `-I=$(pwd)/node_modules/@dcl/protocol`
7
+ - `-I=$(pwd)/node_modules/@dcl/protocol/public`
8
+ - `-I=$(pwd)/node_modules/@dcl/protocol/proto`
9
9
 
10
10
  An example compilation looks like this:
11
11
 
@@ -14,7 +14,7 @@ protoc \
14
14
  --plugin=./node_modules/.bin/protoc-gen-ts_proto \
15
15
  --ts_proto_opt=esModuleInterop=true,returnObservable=false,outputServices=generic-definitions,fileSuffix=.gen \
16
16
  --ts_proto_out="$(pwd)/out-ts" \
17
- -I="$(pwd)/node_modules/protobufjs" \
18
- -I="$(pwd)/node_modules/@dcl/protocol" \
19
- "$(pwd)/node_modules/@dcl/protocol/bff-services.proto"
17
+ -I="$(pwd)/node_modules/@dcl/protocol/public" \
18
+ -I="$(pwd)/node_modules/@dcl/protocol/proto" \
19
+ "$(pwd)/node_modules/@dcl/protocol/public/bff-services.proto"
20
20
  ```