@aloma.io/integration-sdk 3.0.15 → 3.1.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/build/internal/index.mjs
CHANGED
@@ -61,7 +61,6 @@ class Fetcher {
|
|
61
61
|
const theURL = `${baseUrl?.endsWith("/") ? baseUrl : baseUrl + "/"}${url}`.replace(/\/\/+/gi, "/");
|
62
62
|
try {
|
63
63
|
await local.customize(options, args);
|
64
|
-
console.log(options, args);
|
65
64
|
if (!options?.headers || !options?.headers?.Accept) {
|
66
65
|
options.headers = {
|
67
66
|
...options.headers,
|
package/package.json
CHANGED
package/src/internal/index.mjs
CHANGED
@@ -12,7 +12,7 @@ COPY ./src ./src
|
|
12
12
|
|
13
13
|
RUN set -e; addgroup -g 1111 connector; adduser -S -u 1111 -G connector connector
|
14
14
|
|
15
|
-
RUN set -e; apk add --no-cache git; yarn config set --home enableTelemetry 0; chmod 755 /connector/entrypoint.sh; cd /connector/; yarn install --frozen-lockfile;
|
15
|
+
RUN set -e; apk add --no-cache git; yarn config set --home enableTelemetry 0; chmod 755 /connector/entrypoint.sh; cd /connector/; yarn install --frozen-lockfile; yarn build; rm -rf src
|
16
16
|
|
17
17
|
USER connector
|
18
18
|
|