@lotics/cli 0.51.1 → 0.52.0
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/dist/src/cli.js +6 -0
- package/dist/starter_template.js +6 -0
- package/package.json +1 -1
package/dist/src/cli.js
CHANGED
|
@@ -30474,6 +30474,12 @@ export default defineConfig({
|
|
|
30474
30474
|
"@react-native-picker/picker",
|
|
30475
30475
|
"@testing-library/react",
|
|
30476
30476
|
"@testing-library/dom",
|
|
30477
|
+
// @lotics/app-sdk ships compiled dist/ JS (unlike @lotics/ui, which
|
|
30478
|
+
// ships source vitest transforms inline) \u2014 pre-bundled into its own
|
|
30479
|
+
// chunk, its react import splits from the shared instance and nulls
|
|
30480
|
+
// the hooks dispatcher the instant a hook (useAgentRun / useQuery)
|
|
30481
|
+
// runs in a rendered App tree.
|
|
30482
|
+
"@lotics/app-sdk",
|
|
30477
30483
|
],
|
|
30478
30484
|
esbuildOptions: {
|
|
30479
30485
|
resolveExtensions: [".web.tsx", ".web.ts", ".web.js", ".tsx", ".ts", ".jsx", ".js", ".json"],
|
package/dist/starter_template.js
CHANGED
|
@@ -274,6 +274,12 @@ export default defineConfig({
|
|
|
274
274
|
"@react-native-picker/picker",
|
|
275
275
|
"@testing-library/react",
|
|
276
276
|
"@testing-library/dom",
|
|
277
|
+
// @lotics/app-sdk ships compiled dist/ JS (unlike @lotics/ui, which
|
|
278
|
+
// ships source vitest transforms inline) — pre-bundled into its own
|
|
279
|
+
// chunk, its react import splits from the shared instance and nulls
|
|
280
|
+
// the hooks dispatcher the instant a hook (useAgentRun / useQuery)
|
|
281
|
+
// runs in a rendered App tree.
|
|
282
|
+
"@lotics/app-sdk",
|
|
277
283
|
],
|
|
278
284
|
esbuildOptions: {
|
|
279
285
|
resolveExtensions: [".web.tsx", ".web.ts", ".web.js", ".tsx", ".ts", ".jsx", ".js", ".json"],
|