@aepstore-dev/contracts 1.42.0 → 1.42.1
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/src/proto/paths.js +3 -1
- package/package.json +1 -1
package/dist/src/proto/paths.js
CHANGED
|
@@ -2,7 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.PROTO_PACKAGES = exports.PROTO_PATHS = void 0;
|
|
4
4
|
const path_1 = require("path");
|
|
5
|
-
|
|
5
|
+
// __dirname at runtime is .../dist/src/proto — climb up three levels to
|
|
6
|
+
// reach the package root where the shipped `proto/` directory lives.
|
|
7
|
+
const PROTO_DIR = (0, path_1.join)(__dirname, "../../../proto");
|
|
6
8
|
exports.PROTO_PATHS = {
|
|
7
9
|
ACTIVITY: (0, path_1.join)(PROTO_DIR, "activity.proto"),
|
|
8
10
|
AUTH: (0, path_1.join)(PROTO_DIR, "auth.proto"),
|