@sagebox-be/proto-contracts 1.0.7 → 1.0.8
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/dist/utils.js +2 -1
- package/package.json +1 -1
package/dist/utils.js
CHANGED
|
@@ -10,7 +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
|
|
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);
|
|
14
15
|
}
|
|
15
16
|
/**
|
|
16
17
|
* Get all proto file paths
|