@sw-tsdk/connector 2.21.1 → 3.0.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.
|
@@ -17,7 +17,7 @@ RUN pip install -r requirements.txt
|
|
|
17
17
|
FROM ${RUNNER_IMAGE_NAME} AS runtime-image
|
|
18
18
|
ARG ASSET_KEYS
|
|
19
19
|
ENV ASSET_KEYS=$ASSET_KEYS
|
|
20
|
-
RUN if [
|
|
20
|
+
RUN if [ -z "$DEBUG" ] ; then echo 'DEBUG not enabled' ; else echo 'DEBUG is enabled'; pip install debugpy ; fi
|
|
21
21
|
COPY runner.* /scripts/
|
|
22
22
|
|
|
23
23
|
RUN if [ $(stat -c %s "/scripts/runner.txt") -ne 0 ]; then apt-get update && xargs -a /scripts/runner.txt apt-get install -y --no-install-recommends; fi
|
package/package.json
CHANGED
|
@@ -9,9 +9,9 @@
|
|
|
9
9
|
"@oclif/core": "2.8.5",
|
|
10
10
|
"@oclif/plugin-help": "5.2.9",
|
|
11
11
|
"@oclif/plugin-plugins": "3.1.2",
|
|
12
|
-
"@sw-tsdk/common": "^
|
|
13
|
-
"@sw-tsdk/core": "^
|
|
14
|
-
"@sw-tsdk/docker": "^
|
|
12
|
+
"@sw-tsdk/common": "^3.0.1",
|
|
13
|
+
"@sw-tsdk/core": "^3.0.1",
|
|
14
|
+
"@sw-tsdk/docker": "^3.0.1",
|
|
15
15
|
"@swimlane/connector-interfaces": "1.11.0",
|
|
16
16
|
"@swimlane/cosign": "1.4.1",
|
|
17
17
|
"archiver": "5.3.1",
|
|
@@ -65,6 +65,6 @@
|
|
|
65
65
|
"test": "jest --passWithNoTests"
|
|
66
66
|
},
|
|
67
67
|
"types": "lib/index.d.ts",
|
|
68
|
-
"version": "
|
|
69
|
-
"gitHead": "
|
|
68
|
+
"version": "3.0.1",
|
|
69
|
+
"gitHead": "1c761643cb42f1d58eb369d45971e921ae5b1047"
|
|
70
70
|
}
|