@sagebox-be/proto-contracts 1.0.10 → 1.0.11

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.
Files changed (2) hide show
  1. package/dist/utils.js +2 -6
  2. package/package.json +1 -1
package/dist/utils.js CHANGED
@@ -10,12 +10,8 @@ const path_1 = require("path");
10
10
  */
11
11
  function getProtoPath(protoFileName) {
12
12
  // Use absolute path from workspace root to avoid dist folder issues
13
- return (0, path_1.join)(process.cwd(), 'libs/proto-contracts/proto', protoFileName);
14
- // return join(
15
- // process.cwd(),
16
- // 'node_modules/@sagebox-be/proto-contracts/proto',
17
- // protoFileName
18
- // );
13
+ // return join(process.cwd(), 'libs/proto-contracts/proto', protoFileName);
14
+ return (0, path_1.join)(process.cwd(), 'node_modules/@sagebox-be/proto-contracts/proto', protoFileName);
19
15
  }
20
16
  /**
21
17
  * Get all proto file paths
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sagebox-be/proto-contracts",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "description": "Sagebox gRPC Protocol Buffer contracts and TypeScript definitions",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",