@lotics/cli 0.67.0 → 0.68.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 +5 -7
- package/dist/starter_template.js +5 -7
- package/package.json +1 -1
package/dist/src/cli.js
CHANGED
|
@@ -30395,18 +30395,16 @@ function buildStarterTemplate(args) {
|
|
|
30395
30395
|
},
|
|
30396
30396
|
dependencies: {
|
|
30397
30397
|
"@lotics/app-sdk": sdkVersion,
|
|
30398
|
-
//
|
|
30399
|
-
//
|
|
30400
|
-
//
|
|
30401
|
-
|
|
30398
|
+
// The FilePreview engines (pdfjs-dist / @lotics/docx / @lotics/xlsx) are
|
|
30399
|
+
// NOT listed here: they ship as @lotics/ui dependencies (7.14.0+), so
|
|
30400
|
+
// every app gets them transitively — one version source, no skew. An app
|
|
30401
|
+
// that IMPORTS @lotics/docx or @lotics/xlsx directly (its own doc/excel
|
|
30402
|
+
// builders) declares its own dependency then.
|
|
30402
30403
|
"@lotics/ui": uiVersion,
|
|
30403
|
-
"@lotics/xlsx": "^0.1.0",
|
|
30404
30404
|
"@react-native-picker/picker": "^2.7.0",
|
|
30405
30405
|
"expo-image": "~3.0.9",
|
|
30406
30406
|
"lucide-react": "^0.562.0",
|
|
30407
30407
|
"lucide-react-native": "^0.562.0",
|
|
30408
|
-
// PDF preview engine for FilePreview/FileGalleryModal — also lazy-loaded.
|
|
30409
|
-
"pdfjs-dist": "^6.0.0",
|
|
30410
30408
|
react: "^19.0.0",
|
|
30411
30409
|
"react-dom": "^19.0.0",
|
|
30412
30410
|
"react-native": STARTER_REACT_NATIVE_VERSION,
|
package/dist/starter_template.js
CHANGED
|
@@ -80,18 +80,16 @@ export function buildStarterTemplate(args) {
|
|
|
80
80
|
},
|
|
81
81
|
dependencies: {
|
|
82
82
|
"@lotics/app-sdk": sdkVersion,
|
|
83
|
-
//
|
|
84
|
-
//
|
|
85
|
-
//
|
|
86
|
-
|
|
83
|
+
// The FilePreview engines (pdfjs-dist / @lotics/docx / @lotics/xlsx) are
|
|
84
|
+
// NOT listed here: they ship as @lotics/ui dependencies (7.14.0+), so
|
|
85
|
+
// every app gets them transitively — one version source, no skew. An app
|
|
86
|
+
// that IMPORTS @lotics/docx or @lotics/xlsx directly (its own doc/excel
|
|
87
|
+
// builders) declares its own dependency then.
|
|
87
88
|
"@lotics/ui": uiVersion,
|
|
88
|
-
"@lotics/xlsx": "^0.1.0",
|
|
89
89
|
"@react-native-picker/picker": "^2.7.0",
|
|
90
90
|
"expo-image": "~3.0.9",
|
|
91
91
|
"lucide-react": "^0.562.0",
|
|
92
92
|
"lucide-react-native": "^0.562.0",
|
|
93
|
-
// PDF preview engine for FilePreview/FileGalleryModal — also lazy-loaded.
|
|
94
|
-
"pdfjs-dist": "^6.0.0",
|
|
95
93
|
react: "^19.0.0",
|
|
96
94
|
"react-dom": "^19.0.0",
|
|
97
95
|
"react-native": STARTER_REACT_NATIVE_VERSION,
|