@tdk-landscape/tdk-cli-core 1.3.29 → 1.3.30
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/README.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@tdk-landscape/tdk-cli-core)
|
|
6
6
|
[](https://opensource.org/licenses/MIT)
|
|
7
|
+
[](https://badge.socket.dev/npm/package/@tdk-landscape/tdk-cli-core/1.3.27)
|
|
7
8
|
|
|
8
9
|
---
|
|
9
10
|
|
|
@@ -118,6 +118,11 @@ RUN echo '🔍 DEPENDENCY INSTALLATION DIAGNOSTICS (debug)' && \\
|
|
|
118
118
|
+ "RUN --mount=type=cache,target=/cache/bun,sharing=shared chmod +x /usr/local/bin/install-deps.sh && start_ts=$(date +%s) && "
|
|
119
119
|
+ install_deps_verbose
|
|
120
120
|
+ "/usr/local/bin/install-deps.sh && end_ts=$(date +%s) && echo \"install-deps duration: $((end_ts-start_ts))s\"\n"
|
|
121
|
+
# Guarantee /app/node_modules/.bun exists so L3's COPY --link never
|
|
122
|
+
# fails with "not found". Bun's isolated linker only creates this dir
|
|
123
|
+
# when hoisted packages are present; without TDK_LICENSE_KEY the public-
|
|
124
|
+
# npm install may skip it entirely.
|
|
125
|
+
+ "RUN mkdir -p /app/node_modules/.bun\n"
|
|
121
126
|
)
|
|
122
127
|
|
|
123
128
|
DEBUG = {}
|