@lotics/cli 0.53.0 → 0.54.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 +7 -0
- package/dist/starter_template.js +7 -0
- package/package.json +1 -1
package/dist/src/cli.js
CHANGED
|
@@ -30268,11 +30268,18 @@ function buildStarterTemplate(args) {
|
|
|
30268
30268
|
},
|
|
30269
30269
|
dependencies: {
|
|
30270
30270
|
"@lotics/app-sdk": sdkVersion,
|
|
30271
|
+
// Document preview engines for @lotics/ui FilePreview/FileGalleryModal
|
|
30272
|
+
// (Word, Excel/CSV). Lazy-loaded — an app that never previews them
|
|
30273
|
+
// pays no bundle cost; only node_modules size grows.
|
|
30274
|
+
"@lotics/docx": "^0.1.0",
|
|
30271
30275
|
"@lotics/ui": uiVersion,
|
|
30276
|
+
"@lotics/xlsx": "^0.1.0",
|
|
30272
30277
|
"@react-native-picker/picker": "^2.7.0",
|
|
30273
30278
|
"expo-image": "~3.0.9",
|
|
30274
30279
|
"lucide-react": "^0.562.0",
|
|
30275
30280
|
"lucide-react-native": "^0.562.0",
|
|
30281
|
+
// PDF preview engine for FilePreview/FileGalleryModal — also lazy-loaded.
|
|
30282
|
+
"pdfjs-dist": "^6.0.0",
|
|
30276
30283
|
react: "^19.0.0",
|
|
30277
30284
|
"react-dom": "^19.0.0",
|
|
30278
30285
|
"react-native": STARTER_REACT_NATIVE_VERSION,
|
package/dist/starter_template.js
CHANGED
|
@@ -75,11 +75,18 @@ export function buildStarterTemplate(args) {
|
|
|
75
75
|
},
|
|
76
76
|
dependencies: {
|
|
77
77
|
"@lotics/app-sdk": sdkVersion,
|
|
78
|
+
// Document preview engines for @lotics/ui FilePreview/FileGalleryModal
|
|
79
|
+
// (Word, Excel/CSV). Lazy-loaded — an app that never previews them
|
|
80
|
+
// pays no bundle cost; only node_modules size grows.
|
|
81
|
+
"@lotics/docx": "^0.1.0",
|
|
78
82
|
"@lotics/ui": uiVersion,
|
|
83
|
+
"@lotics/xlsx": "^0.1.0",
|
|
79
84
|
"@react-native-picker/picker": "^2.7.0",
|
|
80
85
|
"expo-image": "~3.0.9",
|
|
81
86
|
"lucide-react": "^0.562.0",
|
|
82
87
|
"lucide-react-native": "^0.562.0",
|
|
88
|
+
// PDF preview engine for FilePreview/FileGalleryModal — also lazy-loaded.
|
|
89
|
+
"pdfjs-dist": "^6.0.0",
|
|
83
90
|
react: "^19.0.0",
|
|
84
91
|
"react-dom": "^19.0.0",
|
|
85
92
|
"react-native": STARTER_REACT_NATIVE_VERSION,
|