@lakitu/sdk 0.1.58 → 0.1.59
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 +1 @@
|
|
|
1
|
-
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../../cli/commands/build.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAaH,UAAU,YAAY;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;
|
|
1
|
+
{"version":3,"file":"build.d.ts","sourceRoot":"","sources":["../../../cli/commands/build.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAaH,UAAU,YAAY;IACpB,IAAI,CAAC,EAAE,OAAO,CAAC;IACf,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;CACjB;AAwND,wBAAsB,KAAK,CAAC,OAAO,EAAE,YAAY,iBAgBhD"}
|
|
@@ -162,9 +162,8 @@ RUN pip3 install playwright markitdown
|
|
|
162
162
|
|
|
163
163
|
# Patchright - stealth Chromium that bypasses CDP detection (Cloudflare, DataDome)
|
|
164
164
|
# https://github.com/Kaliiiiiiiiii-Vinyzu/patchright
|
|
165
|
-
# Install globally
|
|
166
|
-
RUN npm install -g patchright && npx patchright install chrome
|
|
167
|
-
cd /home/user/lakitu && /home/user/.bun/bin/bun add patchright
|
|
165
|
+
# Install globally for CLI and browser binaries
|
|
166
|
+
RUN npm install -g patchright && npx patchright install chrome
|
|
168
167
|
|
|
169
168
|
# Create CLI tools (must be root)
|
|
170
169
|
RUN printf '#!/bin/bash\\nbun run /home/user/lakitu/runtime/pdf/pdf-generator.ts "$$@"\\n' > /usr/local/bin/generate-pdf && chmod +x /usr/local/bin/generate-pdf
|
|
@@ -183,6 +182,10 @@ ENV LOCAL_CONVEX_URL="http://localhost:3210"
|
|
|
183
182
|
ENV CONVEX_LOCAL_STORAGE="/home/user/.convex/convex-backend-state/lakitu"
|
|
184
183
|
|
|
185
184
|
USER user
|
|
185
|
+
|
|
186
|
+
# Install patchright in lakitu project for dynamic imports from KSA context
|
|
187
|
+
RUN cd /home/user/lakitu && bun add patchright
|
|
188
|
+
|
|
186
189
|
WORKDIR /home/user/workspace
|
|
187
190
|
`;
|
|
188
191
|
writeFileSync(join(buildDir, "Dockerfile"), dockerfile);
|