@aloma.io/integration-sdk 3.7.18 → 3.7.19

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.
@@ -1,4 +1,5 @@
1
1
  import RuntimeContext from "./runtime-context.mjs";
2
+ import 'dotenv/config';
2
3
  export declare const TARGET_DIR: string;
3
4
  export declare class Builder {
4
5
  private data;
@@ -3,6 +3,7 @@ import path from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
4
  import { notEmpty } from "../internal/util/index.mjs";
5
5
  import RuntimeContext from "./runtime-context.mjs";
6
+ import 'dotenv/config';
6
7
  const DIR_OFFSET = "/../../../../../";
7
8
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
8
9
  export const TARGET_DIR = `${__dirname}${DIR_OFFSET}`;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.7.18",
3
+ "version": "3.7.19",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -29,7 +29,7 @@
29
29
  "@ts-ast-parser/core": "^0.5",
30
30
  "@types/node": "^18",
31
31
  "commander": "^12",
32
- "dotenv": "*",
32
+ "dotenv": "^16",
33
33
  "express": "^4",
34
34
  "jose": "^5",
35
35
  "prom-client": "^15",
@@ -3,6 +3,7 @@ import path from "node:path";
3
3
  import { fileURLToPath } from "node:url";
4
4
  import { notEmpty } from "../internal/util/index.mjs";
5
5
  import RuntimeContext from "./runtime-context.mjs";
6
+ import 'dotenv/config'
6
7
 
7
8
  const DIR_OFFSET = "/../../../../../";
8
9