@aloma.io/integration-sdk 3.2.1 → 3.3.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aloma.io/integration-sdk",
3
- "version": "3.2.1",
3
+ "version": "3.3.1",
4
4
  "description": "",
5
5
  "author": "aloma.io",
6
6
  "license": "Apache-2.0",
@@ -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; yarn build; rm -rf src
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 run build;
16
16
 
17
17
  USER connector
18
18
 
@@ -22,6 +22,6 @@
22
22
  ],
23
23
  "exclude": [
24
24
  "node_modules/**/*",
25
- "dist/**/*"
25
+ "build/**/*"
26
26
  ]
27
27
  }