lucy-cli 2.0.0-alpha.9 → 2.0.0-beta.10

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.
Files changed (620) hide show
  1. package/.cursorignore +4 -0
  2. package/.wix/debug.log +10 -0
  3. package/.yarnrc.yml +0 -1
  4. package/README.md +117 -102
  5. package/dist/args.d.ts +1 -6
  6. package/dist/args.js +102 -7
  7. package/dist/args.js.map +1 -0
  8. package/dist/commands/checks.d.ts +7 -0
  9. package/dist/commands/checks.js +47 -0
  10. package/dist/commands/checks.js.map +1 -0
  11. package/dist/commands/cleanup.d.ts +4 -0
  12. package/dist/commands/cleanup.js +10 -0
  13. package/dist/commands/cleanup.js.map +1 -0
  14. package/dist/commands/copy.d.ts +6 -0
  15. package/dist/commands/copy.js +20 -0
  16. package/dist/commands/copy.js.map +1 -0
  17. package/dist/commands/edit.d.ts +10 -0
  18. package/dist/commands/edit.js +67 -0
  19. package/dist/commands/edit.js.map +1 -0
  20. package/dist/commands/exec.d.ts +7 -0
  21. package/dist/commands/exec.js +69 -0
  22. package/dist/commands/exec.js.map +1 -0
  23. package/dist/commands/git.d.ts +8 -0
  24. package/dist/commands/git.js +104 -0
  25. package/dist/commands/git.js.map +1 -0
  26. package/dist/commands/home.d.ts +4 -0
  27. package/dist/commands/home.js +41 -0
  28. package/dist/commands/home.js.map +1 -0
  29. package/dist/commands/install.d.ts +9 -0
  30. package/dist/commands/install.js +178 -0
  31. package/dist/commands/install.js.map +1 -0
  32. package/dist/commands/read.d.ts +6 -0
  33. package/dist/commands/read.js +40 -0
  34. package/dist/commands/read.js.map +1 -0
  35. package/dist/commands/write.d.ts +7 -0
  36. package/dist/commands/write.js +28 -0
  37. package/dist/commands/write.js.map +1 -0
  38. package/dist/commands.js +1 -0
  39. package/dist/commands.js.map +1 -0
  40. package/dist/config.d.ts +29 -7
  41. package/dist/config.js +90 -26
  42. package/dist/config.js.map +1 -0
  43. package/dist/error.d.ts +1 -9
  44. package/dist/error.js +1 -2
  45. package/dist/error.js.map +1 -0
  46. package/dist/helpers.d.ts +9 -0
  47. package/dist/helpers.js +76 -0
  48. package/dist/helpers.js.map +1 -0
  49. package/dist/index.d.ts +1 -1
  50. package/dist/index.js +80 -10
  51. package/dist/index.js.map +1 -0
  52. package/dist/init/blocks.d.ts +5 -0
  53. package/dist/init/blocks.js +62 -0
  54. package/dist/init/blocks.js.map +1 -0
  55. package/dist/init/cargo.d.ts +2 -0
  56. package/dist/init/cargo.js +21 -0
  57. package/dist/init/cargo.js.map +1 -0
  58. package/dist/init/expo.d.ts +5 -0
  59. package/dist/init/expo.js +52 -0
  60. package/dist/init/expo.js.map +1 -0
  61. package/dist/init/gitModules.d.ts +2 -0
  62. package/dist/init/gitModules.js +13 -0
  63. package/dist/init/gitModules.js.map +1 -0
  64. package/dist/init/index.d.ts +3 -0
  65. package/dist/init/index.js +86 -0
  66. package/dist/init/index.js.map +1 -0
  67. package/dist/init/monorepo.d.ts +4 -0
  68. package/dist/init/monorepo.js +48 -0
  69. package/dist/init/monorepo.js.map +1 -0
  70. package/dist/init/prepareVelo.d.ts +2 -0
  71. package/dist/init/prepareVelo.js +16 -0
  72. package/dist/init/prepareVelo.js.map +1 -0
  73. package/dist/init/tauri.d.ts +5 -0
  74. package/dist/init/tauri.js +32 -0
  75. package/dist/init/tauri.js.map +1 -0
  76. package/dist/init/templates.d.ts +5 -0
  77. package/dist/init/templates.js +93 -0
  78. package/dist/init/templates.js.map +1 -0
  79. package/dist/init/velo.d.ts +5 -0
  80. package/dist/init/velo.js +61 -0
  81. package/dist/init/velo.js.map +1 -0
  82. package/dist/policy.js +1 -0
  83. package/dist/policy.js.map +1 -0
  84. package/dist/prepare.js +1 -0
  85. package/dist/prepare.js.map +1 -0
  86. package/dist/runtime.d.ts +1 -1
  87. package/dist/runtime.js +1 -0
  88. package/dist/runtime.js.map +1 -0
  89. package/dist/schemas/gulp.d.ts +25 -0
  90. package/dist/schemas/gulp.js +8 -0
  91. package/dist/schemas/gulp.js.map +1 -0
  92. package/dist/schemas/index.d.ts +11 -0
  93. package/dist/schemas/index.js +10 -0
  94. package/dist/schemas/index.js.map +1 -0
  95. package/dist/schemas/lucy.d.ts +29 -0
  96. package/dist/schemas/lucy.js +42 -0
  97. package/dist/schemas/lucy.js.map +1 -0
  98. package/dist/schemas/tsconfig.js +2 -0
  99. package/dist/schemas/tsconfig.js.map +1 -0
  100. package/dist/schemas/types.d.ts +33 -0
  101. package/dist/schemas/types.js +5 -1
  102. package/dist/schemas/types.js.map +1 -0
  103. package/dist/states.js +1 -0
  104. package/dist/states.js.map +1 -0
  105. package/dist/tasks/Gulpfile.d.ts +4 -0
  106. package/dist/tasks/Gulpfile.js +111 -0
  107. package/dist/tasks/Gulpfile.js.map +1 -0
  108. package/dist/tasks/gulp/backend.d.ts +4 -0
  109. package/dist/tasks/gulp/backend.js +92 -0
  110. package/dist/tasks/gulp/backend.js.map +1 -0
  111. package/dist/tasks/gulp/checks.d.ts +4 -0
  112. package/dist/tasks/gulp/checks.js +203 -0
  113. package/dist/tasks/gulp/checks.js.map +1 -0
  114. package/dist/tasks/gulp/clean.d.ts +3 -0
  115. package/dist/tasks/gulp/clean.js +33 -0
  116. package/dist/tasks/gulp/clean.js.map +1 -0
  117. package/dist/tasks/gulp/copy.d.ts +3 -0
  118. package/dist/tasks/gulp/copy.js +34 -0
  119. package/dist/tasks/gulp/copy.js.map +1 -0
  120. package/dist/tasks/gulp/helpers.d.ts +3 -0
  121. package/dist/tasks/gulp/helpers.js +19 -0
  122. package/dist/tasks/gulp/helpers.js.map +1 -0
  123. package/dist/tasks/gulp/pages.d.ts +2 -0
  124. package/dist/tasks/gulp/pages.js +39 -0
  125. package/dist/tasks/gulp/pages.js.map +1 -0
  126. package/dist/tasks/gulp/pipeline.d.ts +1 -0
  127. package/dist/tasks/gulp/pipeline.js +29 -0
  128. package/dist/tasks/gulp/pipeline.js.map +1 -0
  129. package/dist/tasks/gulp/public.d.ts +3 -0
  130. package/dist/tasks/gulp/public.js +50 -0
  131. package/dist/tasks/gulp/public.js.map +1 -0
  132. package/dist/tasks/gulp/styles.d.ts +3 -0
  133. package/dist/tasks/gulp/styles.js +40 -0
  134. package/dist/tasks/gulp/styles.js.map +1 -0
  135. package/dist/tasks/gulp/templates.d.ts +2 -0
  136. package/dist/tasks/gulp/templates.js +45 -0
  137. package/dist/tasks/gulp/templates.js.map +1 -0
  138. package/dist/tasks/gulp/types.d.ts +4 -0
  139. package/dist/tasks/gulp/types.js +293 -0
  140. package/dist/tasks/gulp/types.js.map +1 -0
  141. package/dist/tasks/gulp/watchers.d.ts +3 -0
  142. package/dist/tasks/gulp/watchers.js +59 -0
  143. package/dist/tasks/gulp/watchers.js.map +1 -0
  144. package/dist/tasks/index.d.ts +4 -0
  145. package/dist/tasks/index.js +23 -0
  146. package/dist/tasks/index.js.map +1 -0
  147. package/dist/tasks/syncSettings.d.ts +3 -0
  148. package/dist/tasks/syncSettings.js +18 -0
  149. package/dist/tasks/syncSettings.js.map +1 -0
  150. package/dist/utils/index.js +2 -0
  151. package/dist/utils/index.js.map +1 -0
  152. package/dist/utils/logger.d.ts +17 -0
  153. package/dist/utils/logger.js +37 -0
  154. package/dist/utils/logger.js.map +1 -0
  155. package/dist/wix-sdk/check.d.ts +4 -0
  156. package/dist/wix-sdk/check.js +23 -0
  157. package/dist/wix-sdk/check.js.map +1 -0
  158. package/dist/wix-sdk/client.d.ts +10 -0
  159. package/dist/wix-sdk/client.js +18 -0
  160. package/dist/wix-sdk/client.js.map +1 -0
  161. package/dist/wix-sdk/index.d.ts +4 -0
  162. package/dist/wix-sdk/index.js +15 -0
  163. package/dist/wix-sdk/index.js.map +1 -0
  164. package/dist/wix-sdk/init.d.ts +4 -0
  165. package/dist/wix-sdk/init.js +51 -0
  166. package/dist/wix-sdk/init.js.map +1 -0
  167. package/dist/wix-sdk/run.d.ts +4 -0
  168. package/dist/wix-sdk/run.js +53 -0
  169. package/dist/wix-sdk/run.js.map +1 -0
  170. package/dist/wix-sync/client.d.ts +3 -0
  171. package/dist/wix-sync/client.js +5 -0
  172. package/dist/wix-sync/client.js.map +1 -0
  173. package/dist/wix-sync/export.d.ts +4 -0
  174. package/dist/wix-sync/export.js +15 -0
  175. package/dist/wix-sync/export.js.map +1 -0
  176. package/dist/wix-sync/import.d.ts +4 -0
  177. package/dist/wix-sync/import.js +26 -0
  178. package/dist/wix-sync/import.js.map +1 -0
  179. package/dist/wix-sync/index.d.ts +4 -0
  180. package/dist/wix-sync/index.js +35 -0
  181. package/dist/wix-sync/index.js.map +1 -0
  182. package/dist/wix-sync/init.d.ts +4 -0
  183. package/dist/wix-sync/init.js +74 -0
  184. package/dist/wix-sync/init.js.map +1 -0
  185. package/dist/wix-sync/is-alive.d.ts +4 -0
  186. package/dist/wix-sync/is-alive.js +23 -0
  187. package/dist/wix-sync/is-alive.js.map +1 -0
  188. package/dist/wix-sync/migrate.d.ts +4 -0
  189. package/dist/wix-sync/migrate.js +21 -0
  190. package/dist/wix-sync/migrate.js.map +1 -0
  191. package/dist/wix-sync/sync.d.ts +4 -0
  192. package/dist/wix-sync/sync.js +26 -0
  193. package/dist/wix-sync/sync.js.map +1 -0
  194. package/files/sync-data/data/test.csv +17 -0
  195. package/files/sync-data/files/lucy.jpg +0 -0
  196. package/files/sync-data/schema/test.json +11 -0
  197. package/files/templates/block[D]/files/.cursorignore +4 -0
  198. package/files/templates/block[D]/files/.stylelintrc.js +8 -0
  199. package/files/templates/block[D]/lucy.json +9 -0
  200. package/files/templates/cargo[D]/files/.cursorignore +4 -0
  201. package/files/templates/cargo[D]/files/.env +1 -0
  202. package/files/templates/cargo[D]/files/Cargo.toml +238 -0
  203. package/files/templates/cargo[D]/files/Makefile.toml +4 -0
  204. package/files/templates/cargo[D]/files/build/main.rs +35 -0
  205. package/files/templates/cargo[D]/files/config/beta.json +19 -0
  206. package/files/templates/cargo[D]/files/config/ci.json +15 -0
  207. package/files/templates/cargo[D]/files/config/default.json +71 -0
  208. package/files/templates/cargo[D]/files/config/development.json +10 -0
  209. package/files/templates/cargo[D]/files/config/produktion.json +5 -0
  210. package/files/templates/cargo[D]/files/config/stage.json +4 -0
  211. package/files/templates/cargo[D]/files/locales/todo.yml +3 -0
  212. package/files/templates/cargo[D]/files/public/index.html +1 -0
  213. package/files/templates/cargo[D]/lucy.json +15 -0
  214. package/files/templates/expo verse[D]/files/.stylelintrc.json +8 -0
  215. package/files/templates/expo verse[D]/files/.vscode/extensions.json +10 -0
  216. package/files/templates/expo verse[D]/files/.vscode/launch.json +54 -0
  217. package/files/templates/expo verse[D]/files/.vscode/settings.json +30 -0
  218. package/files/templates/expo verse[D]/files/.yarnrc.yml +8 -0
  219. package/files/templates/expo verse[D]/files/App.tsx +63 -0
  220. package/files/templates/expo verse[D]/files/DEBUGGING.md +126 -0
  221. package/files/templates/expo verse[D]/files/android/app/build.gradle +177 -0
  222. package/files/templates/expo verse[D]/files/android/app/debug.keystore +0 -0
  223. package/files/templates/expo verse[D]/files/android/app/proguard-rules.pro +14 -0
  224. package/files/templates/expo verse[D]/files/android/app/src/debug/AndroidManifest.xml +7 -0
  225. package/files/templates/expo verse[D]/files/android/app/src/main/AndroidManifest.xml +33 -0
  226. package/files/templates/expo verse[D]/files/android/app/src/main/java/so/sunnysideup/daily_verse/MainActivity.kt +65 -0
  227. package/files/templates/expo verse[D]/files/android/app/src/main/java/so/sunnysideup/daily_verse/MainApplication.kt +57 -0
  228. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable/ic_launcher_background.xml +6 -0
  229. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  230. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png +0 -0
  231. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png +0 -0
  232. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-night-hdpi/splashscreen_logo.png +0 -0
  233. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-night-mdpi/splashscreen_logo.png +0 -0
  234. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-night-xhdpi/splashscreen_logo.png +0 -0
  235. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-night-xxhdpi/splashscreen_logo.png +0 -0
  236. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-night-xxxhdpi/splashscreen_logo.png +0 -0
  237. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png +0 -0
  238. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png +0 -0
  239. package/files/templates/expo verse[D]/files/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png +0 -0
  240. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +6 -0
  241. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +6 -0
  242. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
  243. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp +0 -0
  244. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_monochrome.webp +0 -0
  245. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
  246. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
  247. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp +0 -0
  248. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_monochrome.webp +0 -0
  249. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
  250. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
  251. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp +0 -0
  252. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_monochrome.webp +0 -0
  253. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
  254. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
  255. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp +0 -0
  256. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_monochrome.webp +0 -0
  257. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
  258. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
  259. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp +0 -0
  260. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_monochrome.webp +0 -0
  261. package/files/templates/expo verse[D]/files/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
  262. package/files/templates/expo verse[D]/files/android/app/src/main/res/values/colors.xml +6 -0
  263. package/files/templates/expo verse[D]/files/android/app/src/main/res/values/strings.xml +7 -0
  264. package/files/templates/expo verse[D]/files/android/app/src/main/res/values/styles.xml +12 -0
  265. package/files/templates/expo verse[D]/files/android/app/src/main/res/values-night/colors.xml +3 -0
  266. package/files/templates/expo verse[D]/files/android/build.gradle +37 -0
  267. package/files/templates/expo verse[D]/files/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  268. package/files/templates/expo verse[D]/files/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  269. package/files/templates/expo verse[D]/files/android/gradle.properties +59 -0
  270. package/files/templates/expo verse[D]/files/android/gradlew +251 -0
  271. package/files/templates/expo verse[D]/files/android/gradlew.bat +94 -0
  272. package/files/templates/expo verse[D]/files/android/settings.gradle +39 -0
  273. package/files/templates/expo verse[D]/files/app.config.ts +77 -0
  274. package/files/templates/expo verse[D]/files/assets/data/de.csv +949 -0
  275. package/files/templates/expo verse[D]/files/assets/data/en.csv +949 -0
  276. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-Black.ttf +0 -0
  277. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-BlackItalic.ttf +0 -0
  278. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-Bold.ttf +0 -0
  279. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-BoldItalic.ttf +0 -0
  280. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-ExtraBold.ttf +0 -0
  281. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-ExtraBoldItalic.ttf +0 -0
  282. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-Italic.ttf +0 -0
  283. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-Medium.ttf +0 -0
  284. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-MediumItalic.ttf +0 -0
  285. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-Regular.ttf +0 -0
  286. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-SemiBold.ttf +0 -0
  287. package/files/templates/expo verse[D]/files/assets/fonts/PlayfairDisplay-SemiBoldItalic.ttf +0 -0
  288. package/files/{expo → templates/expo verse[D]/files}/assets/fonts/SpaceMono-Regular.ttf +0 -0
  289. package/files/templates/expo verse[D]/files/assets/images/andorid/background.png +0 -0
  290. package/files/templates/expo verse[D]/files/assets/images/android-dark.png +0 -0
  291. package/files/templates/expo verse[D]/files/assets/images/android-light.png +0 -0
  292. package/files/templates/expo verse[D]/files/assets/images/background.png +0 -0
  293. package/files/templates/expo verse[D]/files/assets/images/ios-dark.png +0 -0
  294. package/files/templates/expo verse[D]/files/assets/images/ios-light.png +0 -0
  295. package/files/templates/expo verse[D]/files/assets/images/ios-tinted.png +0 -0
  296. package/files/templates/expo verse[D]/files/assets/images/splash-icon-dark.png +0 -0
  297. package/files/templates/expo verse[D]/files/assets/images/splash-icon-light.png +0 -0
  298. package/files/templates/expo verse[D]/files/components/MainScreen.tsx +299 -0
  299. package/files/templates/expo verse[D]/files/components/Share.tsx +132 -0
  300. package/files/templates/expo verse[D]/files/components/ui/dev.tsx +48 -0
  301. package/files/templates/expo verse[D]/files/constants/config.ts +30 -0
  302. package/files/templates/expo verse[D]/files/data/de.csv +219 -0
  303. package/files/templates/expo verse[D]/files/data/en.csv +219 -0
  304. package/files/templates/expo verse[D]/files/data/version.json +4 -0
  305. package/files/templates/expo verse[D]/files/eas.json +47 -0
  306. package/files/templates/expo verse[D]/files/eslint.config.mjs +185 -0
  307. package/files/templates/expo verse[D]/files/index.ts +28 -0
  308. package/files/templates/expo verse[D]/files/lib/content.ts +31 -0
  309. package/files/templates/expo verse[D]/files/lib/data.ts +180 -0
  310. package/files/templates/expo verse[D]/files/lib/helper.ts +54 -0
  311. package/files/templates/expo verse[D]/files/lib/index.ts +21 -0
  312. package/files/templates/expo verse[D]/files/lib/state.ts +128 -0
  313. package/files/templates/expo verse[D]/files/lib/storage.ts +17 -0
  314. package/files/templates/expo verse[D]/files/lib/taskManager/index.ts +38 -0
  315. package/files/templates/expo verse[D]/files/lib/taskManager/loadData.ts +14 -0
  316. package/files/templates/expo verse[D]/files/lib/utils/screenshot.ts +77 -0
  317. package/files/templates/expo verse[D]/files/metro.config.js +81 -0
  318. package/files/templates/expo verse[D]/files/models/index.ts +28 -0
  319. package/files/templates/expo verse[D]/files/package.json +102 -0
  320. package/files/templates/expo verse[D]/files/pnpm-workspace.yaml +3 -0
  321. package/files/templates/expo verse[D]/files/scripts/convert-verses.ts +309 -0
  322. package/files/templates/expo verse[D]/files/scripts/move-artifacts.ts +83 -0
  323. package/files/{expo → templates/expo verse[D]/files}/scripts/reset-project.ts +0 -0
  324. package/files/templates/expo verse[D]/files/tsconfig.json +45 -0
  325. package/files/templates/expo verse[D]/files/types/index.ts +4 -0
  326. package/files/templates/expo verse[D]/files/types/reset.d.ts +1 -0
  327. package/files/templates/expo verse[D]/lucy.json +86 -0
  328. package/files/templates/expo[D]/files/.cursorignore +4 -0
  329. package/files/templates/expo[D]/files/.nvmrc +1 -0
  330. package/files/templates/expo[D]/files/.prettierignore +23 -0
  331. package/files/templates/expo[D]/files/.prettierrc.js +16 -0
  332. package/files/templates/expo[D]/files/.stylelintrc.js +8 -0
  333. package/files/templates/expo[D]/files/.yarnrc +1 -0
  334. package/files/templates/expo[D]/files/README.md +45 -0
  335. package/files/templates/expo[D]/files/app.config.ts +69 -0
  336. package/files/templates/expo[D]/files/assets/fonts/SpaceMono-Regular.ttf +0 -0
  337. package/files/templates/expo[D]/files/babel.config.js +10 -0
  338. package/files/templates/expo[D]/files/constants/theme.ts +18 -0
  339. package/files/{expo → templates/expo[D]/files}/eas.json +9 -3
  340. package/files/templates/expo[D]/files/global.css +47 -0
  341. package/files/templates/expo[D]/files/hooks/useColorScheme.ts +17 -0
  342. package/files/templates/expo[D]/files/lib/data.ts +197 -0
  343. package/files/templates/expo[D]/files/lib/utils/index.ts +11 -0
  344. package/files/templates/expo[D]/files/lib/utils/polyfills.ts +29 -0
  345. package/files/{expo → templates/expo[D]/files}/metro.config.js +6 -0
  346. package/files/templates/expo[D]/files/nativewind-env.d.ts +1 -0
  347. package/files/templates/expo[D]/files/pnpm-workspace.yaml +3 -0
  348. package/files/templates/expo[D]/files/scripts/reset-project.ts +116 -0
  349. package/files/templates/expo[D]/files/tailwind.config.js +63 -0
  350. package/files/templates/expo[D]/lucy.json +86 -0
  351. package/files/templates/monorepo[D]/files/.cursorignore +4 -0
  352. package/files/templates/monorepo[D]/files/.editorconfig +10 -0
  353. package/files/templates/monorepo[D]/files/.nvmrc +1 -0
  354. package/files/templates/monorepo[D]/files/.prettierignore +23 -0
  355. package/files/templates/monorepo[D]/files/.prettierrc.json +15 -0
  356. package/files/templates/monorepo[D]/files/.stylelintrc.js +8 -0
  357. package/files/templates/monorepo[D]/files/.yarnrc +1 -0
  358. package/files/{velo → templates/monorepo[D]/files}/.yarnrc.yml +1 -1
  359. package/files/templates/monorepo[D]/files/README.md +109 -0
  360. package/files/templates/monorepo[D]/files/currents.config.ts +5 -0
  361. package/files/templates/monorepo[D]/files/nx.json +25 -0
  362. package/files/templates/monorepo[D]/files/pnpm-workspace.yaml +11 -0
  363. package/files/templates/monorepo[D]/files/tsconfig.json +6 -0
  364. package/files/templates/monorepo[D]/files/typedoc.json +25 -0
  365. package/files/templates/monorepo[D]/files/vitest.config.ts +27 -0
  366. package/files/templates/monorepo[D]/lucy.json +69 -0
  367. package/files/templates/tauri[D]/files/.cursorignore +4 -0
  368. package/files/templates/tauri[D]/lucy.json +9 -0
  369. package/files/templates/velo[D]/files/.cursorignore +4 -0
  370. package/files/templates/velo[D]/files/.prettierignore +23 -0
  371. package/files/templates/velo[D]/files/.prettierrc.js +16 -0
  372. package/files/templates/velo[D]/files/.yarnrc.yml +2 -0
  373. package/files/{velo → templates/velo[D]/files}/local.tsconfig.json +6 -5
  374. package/files/templates/velo[D]/files/typescript/backend/config/authz.ts +47 -0
  375. package/files/templates/velo[D]/files/typescript/backend/config/env.ts +8 -0
  376. package/files/templates/velo[D]/files/typescript/backend/config/index.ts +26 -0
  377. package/files/templates/velo[D]/files/typescript/backend/config/mail.ts +10 -0
  378. package/files/templates/velo[D]/files/typescript/backend/config/nats.ts +6 -0
  379. package/files/templates/velo[D]/files/typescript/public/config/env.ts +9 -0
  380. package/files/templates/velo[D]/files/typescript/public/config/index.ts +76 -0
  381. package/files/templates/velo[D]/files/typescript/public/config/locales.ts +30 -0
  382. package/files/templates/velo[D]/files/typescript/public/config/theme.ts +110 -0
  383. package/files/templates/velo[D]/files/typescript/public/i18n/default.ts +123 -0
  384. package/files/templates/velo[D]/files/typescript/public/i18n/en.ts +117 -0
  385. package/files/templates/velo[D]/files/typescript/public/models/collections/member_roles.mode.ts +21 -0
  386. package/files/templates/velo[D]/files/typescript/public/models/collections/organization.model.ts +38 -0
  387. package/files/templates/velo[D]/files/typescript/public/models/collections/plan.model.ts +94 -0
  388. package/files/templates/velo[D]/files/typescript/public/models/collections/stage.model.ts +14 -0
  389. package/files/templates/velo[D]/files/typescript/public/models/collections/subscriptions.model.ts +80 -0
  390. package/files/templates/velo[D]/files/typescript/public/models/collections/tag.model.ts +15 -0
  391. package/files/templates/velo[D]/files/typescript/public/models/collections/translations.model.ts +16 -0
  392. package/files/templates/velo[D]/files/typescript/public/models/modules/authz.model.ts +31 -0
  393. package/files/templates/velo[D]/files/typescript/public/models/modules/organization.ts +20 -0
  394. package/files/templates/velo[D]/files/typescript/public/models/splitwise.model.ts +18 -0
  395. package/files/templates/velo[D]/files/typescript/public/models/store/local.model.ts +10 -0
  396. package/files/templates/velo[D]/files/typescript/public/models/store/memory.model.ts +10 -0
  397. package/files/templates/velo[D]/files/typescript/public/models/store/session.model.ts +10 -0
  398. package/files/templates/velo[D]/files/typescript/public/models/wix/ecom/payment.ts +236 -0
  399. package/files/templates/velo[D]/files/typescript/styles/.gitkeep +0 -0
  400. package/files/templates/velo[D]/files/typescript/styles/global.scss +0 -0
  401. package/files/templates/velo[D]/lucy.json +137 -0
  402. package/lucy +4 -0
  403. package/lucy.jpg +0 -0
  404. package/mitarbeiter-login.html +188 -0
  405. package/old/Gulpfile.d.ts +34 -0
  406. package/old/Gulpfile.js +116 -0
  407. package/old/Gulpfile.js.map +1 -0
  408. package/old/gulp/backend.d.ts +3 -0
  409. package/old/gulp/backend.js +92 -0
  410. package/old/gulp/backend.js.map +1 -0
  411. package/old/gulp/checks.d.ts +3 -0
  412. package/old/gulp/checks.js +205 -0
  413. package/old/gulp/checks.js.map +1 -0
  414. package/old/gulp/clean.d.ts +3 -0
  415. package/old/gulp/clean.js +29 -0
  416. package/old/gulp/clean.js.map +1 -0
  417. package/old/gulp/copy.d.ts +2 -0
  418. package/old/gulp/copy.js +34 -0
  419. package/old/gulp/copy.js.map +1 -0
  420. package/old/gulp/helpers.d.ts +2 -0
  421. package/old/gulp/helpers.js +25 -0
  422. package/old/gulp/helpers.js.map +1 -0
  423. package/old/gulp/pages.d.ts +2 -0
  424. package/old/gulp/pages.js +37 -0
  425. package/old/gulp/pages.js.map +1 -0
  426. package/old/gulp/pipeline.d.ts +1 -0
  427. package/old/gulp/pipeline.js +29 -0
  428. package/old/gulp/pipeline.js.map +1 -0
  429. package/old/gulp/public.d.ts +2 -0
  430. package/old/gulp/public.js +50 -0
  431. package/old/gulp/public.js.map +1 -0
  432. package/old/gulp/styles.d.ts +2 -0
  433. package/old/gulp/styles.js +40 -0
  434. package/old/gulp/styles.js.map +1 -0
  435. package/old/gulp/templates.d.ts +2 -0
  436. package/old/gulp/templates.js +33 -0
  437. package/old/gulp/templates.js.map +1 -0
  438. package/old/gulp/types.d.ts +4 -0
  439. package/old/gulp/types.js +289 -0
  440. package/old/gulp/types.js.map +1 -0
  441. package/old/gulp/watchers.d.ts +9 -0
  442. package/old/gulp/watchers.js +59 -0
  443. package/old/gulp/watchers.js.map +1 -0
  444. package/old/helpers.d.ts +32 -0
  445. package/old/helpers.js +267 -0
  446. package/old/helpers.js.map +1 -0
  447. package/{src copy/helpers.ts → old/helpers.ts} +1 -1
  448. package/old/index.d.ts +59 -0
  449. package/old/index.js +288 -0
  450. package/old/index.js.map +1 -0
  451. package/{src copy → old}/index.ts +0 -0
  452. package/old/init.d.ts +8 -0
  453. package/old/init.js +165 -0
  454. package/old/init.js.map +1 -0
  455. package/old/models.d.ts +37 -0
  456. package/old/models.js +2 -0
  457. package/old/models.js.map +1 -0
  458. package/old/prepare.d.ts +8 -0
  459. package/old/prepare.js +20 -0
  460. package/old/prepare.js.map +1 -0
  461. package/old/schemas/index.d.ts +0 -0
  462. package/old/schemas/index.js +2 -0
  463. package/old/schemas/index.js.map +1 -0
  464. package/old/schemas/index.ts +0 -0
  465. package/old/schemas/types.d.ts +0 -0
  466. package/old/schemas/types.js +2 -0
  467. package/old/schemas/types.js.map +1 -0
  468. package/old/schemas/types.ts +0 -0
  469. package/old/sync.d.ts +2 -0
  470. package/old/sync.js +88 -0
  471. package/old/sync.js.map +1 -0
  472. package/package.json +28 -28
  473. package/patches/velo-sync+0.0.9.patch +13 -0
  474. package/pnpm-workspace.yaml +6 -0
  475. package/src/args.ts +102 -17
  476. package/src/commands/checks.ts +51 -0
  477. package/src/commands/cleanup.ts +11 -0
  478. package/src/commands/copy.ts +28 -0
  479. package/src/commands/edit.ts +81 -0
  480. package/src/commands/exec.ts +73 -0
  481. package/src/commands/git.ts +113 -0
  482. package/src/commands/home.ts +56 -0
  483. package/src/commands/install.ts +269 -0
  484. package/src/commands/read.ts +45 -0
  485. package/src/commands/write.ts +45 -0
  486. package/src/config.ts +116 -35
  487. package/src/error.ts +1 -2
  488. package/src/helpers.ts +84 -0
  489. package/src/index.ts +91 -14
  490. package/src/init/blocks.ts +85 -0
  491. package/src/init/cargo.ts +25 -0
  492. package/src/init/expo.ts +69 -0
  493. package/src/init/gitModules.ts +15 -0
  494. package/src/init/index.ts +89 -0
  495. package/src/init/monorepo.ts +72 -0
  496. package/src/init/prepareVelo.ts +19 -0
  497. package/src/init/tauri.ts +42 -0
  498. package/src/init/templates.ts +98 -0
  499. package/src/init/velo.ts +66 -0
  500. package/src/runtime.ts +1 -0
  501. package/src/schemas/gulp.ts +31 -0
  502. package/src/schemas/index.ts +15 -1
  503. package/src/schemas/lucy.ts +43 -0
  504. package/src/schemas/types.ts +40 -0
  505. package/src/tasks/Gulpfile.ts +207 -0
  506. package/src/tasks/gulp/backend.ts +113 -0
  507. package/src/tasks/gulp/checks.ts +219 -0
  508. package/src/tasks/gulp/clean.ts +38 -0
  509. package/src/tasks/gulp/copy.ts +38 -0
  510. package/src/tasks/gulp/helpers.ts +18 -0
  511. package/src/tasks/gulp/pages.ts +43 -0
  512. package/src/tasks/gulp/pipeline.ts +31 -0
  513. package/src/tasks/gulp/public.ts +61 -0
  514. package/src/tasks/gulp/styles.ts +47 -0
  515. package/src/tasks/gulp/templates.ts +53 -0
  516. package/src/tasks/gulp/types.ts +310 -0
  517. package/src/tasks/gulp/watchers.ts +97 -0
  518. package/src/tasks/index.ts +24 -0
  519. package/src/tasks/syncSettings.ts +21 -0
  520. package/src/types.d.ts +1 -1
  521. package/src/utils/index.ts +0 -0
  522. package/src/utils/logger.ts +40 -0
  523. package/src/wix-sdk/check.ts +24 -0
  524. package/src/wix-sdk/client.ts +18 -0
  525. package/src/wix-sdk/index.ts +17 -0
  526. package/src/wix-sdk/init.ts +54 -0
  527. package/src/wix-sdk/run.ts +56 -0
  528. package/src/wix-sync/client.ts +6 -0
  529. package/src/wix-sync/export.ts +19 -0
  530. package/src/wix-sync/import.ts +27 -0
  531. package/src/wix-sync/index.ts +36 -0
  532. package/src/wix-sync/init.ts +77 -0
  533. package/src/wix-sync/is-alive.ts +25 -0
  534. package/src/wix-sync/migrate.ts +23 -0
  535. package/src/wix-sync/sync.ts +27 -0
  536. package/tsconfig.json +6 -5
  537. package/dist/init.d.ts +0 -4
  538. package/dist/init.js +0 -275
  539. package/dist/models.js +0 -1
  540. package/dist/params.d.ts +0 -7
  541. package/dist/params.js +0 -23
  542. package/files/expo/lib/data.ts +0 -48
  543. package/src/init.ts +0 -392
  544. /package/dist/{models.d.ts → schemas/tsconfig.d.ts} +0 -0
  545. /package/{files/expo/components/.gitkeep → dist/utils/index.d.ts} +0 -0
  546. /package/files/{expo → templates/expo verse[D]/files}/.nvmrc +0 -0
  547. /package/files/{expo → templates/expo verse[D]/files}/.prettierignore +0 -0
  548. /package/files/{expo → templates/expo verse[D]/files}/.prettierrc.js +0 -0
  549. /package/files/{expo/components/ui/.gitkeep → templates/expo verse[D]/files/.vscode/tasks.json} +0 -0
  550. /package/files/{expo → templates/expo verse[D]/files}/.yarnrc +0 -0
  551. /package/files/{expo → templates/expo verse[D]/files}/README.md +0 -0
  552. /package/files/{expo → templates/expo verse[D]/files}/babel.config.js +0 -0
  553. /package/files/{velo/typescript/__mocks__ → templates/expo verse[D]/files/components}/.gitkeep +0 -0
  554. /package/files/{velo/typescript/pages → templates/expo verse[D]/files/components/ui}/.gitkeep +0 -0
  555. /package/files/{expo → templates/expo verse[D]/files}/constants/theme.ts +0 -0
  556. /package/files/{expo → templates/expo verse[D]/files}/global.css +0 -0
  557. /package/files/{expo → templates/expo verse[D]/files}/hooks/useColorScheme.ts +0 -0
  558. /package/files/{expo → templates/expo verse[D]/files}/lib/utils/index.ts +0 -0
  559. /package/files/{expo → templates/expo verse[D]/files}/lib/utils/polyfills.ts +0 -0
  560. /package/files/{expo → templates/expo verse[D]/files}/lucy.json +0 -0
  561. /package/files/{expo → templates/expo verse[D]/files}/nativewind-env.d.ts +0 -0
  562. /package/files/{expo → templates/expo verse[D]/files}/tailwind.config.js +0 -0
  563. /package/files/{expo → templates/expo[D]/files}/.yarnrc.yml +0 -0
  564. /package/files/{expo → templates/expo[D]/files}/assets/images/adaptive-icon.png +0 -0
  565. /package/files/{expo → templates/expo[D]/files}/assets/images/favicon.png +0 -0
  566. /package/files/{expo → templates/expo[D]/files}/assets/images/icon.png +0 -0
  567. /package/files/{expo → templates/expo[D]/files}/assets/images/splash-icon.png +0 -0
  568. /package/files/{velo/typescript/public → templates/expo[D]/files/components}/.gitkeep +0 -0
  569. /package/files/{velo/typescript/styles → templates/expo[D]/files/components/ui}/.gitkeep +0 -0
  570. /package/files/{expo → templates/expo[D]/files}/eslint.config.mjs +0 -0
  571. /package/files/{expo → templates/expo[D]/files}/index.ts +0 -0
  572. /package/files/{expo → templates/expo[D]/files}/lib/wix/client.ts +0 -0
  573. /package/files/{expo → templates/expo[D]/files}/lib/wix/error.ts +0 -0
  574. /package/files/{expo → templates/expo[D]/files}/lib/wix/index.ts +0 -0
  575. /package/files/{expo → templates/expo[D]/files}/tsconfig.json +0 -0
  576. /package/files/{expo → templates/expo[D]/files}/types/reset.d.ts +0 -0
  577. /package/files/{velo → templates/velo[D]/files}/.gitmodules +0 -0
  578. /package/files/{velo → templates/velo[D]/files}/.madgerc +0 -0
  579. /package/files/{velo → templates/velo[D]/files}/.nvmrc +0 -0
  580. /package/files/{velo → templates/velo[D]/files}/.stylelintrc.js +0 -0
  581. /package/files/{velo → templates/velo[D]/files}/currents.config.js +0 -0
  582. /package/files/{velo → templates/velo[D]/files}/cypress/e2e/base/base.cy.ts +0 -0
  583. /package/files/{velo → templates/velo[D]/files}/cypress/fixtures/example.json +0 -0
  584. /package/files/{velo → templates/velo[D]/files}/cypress/support/commands.ts +0 -0
  585. /package/files/{velo → templates/velo[D]/files}/cypress/support/e2e.ts +0 -0
  586. /package/files/{velo → templates/velo[D]/files}/cypress/tsconfig.json +0 -0
  587. /package/files/{velo → templates/velo[D]/files}/cypress.config.mjs +0 -0
  588. /package/files/{velo → templates/velo[D]/files}/eslint.config.mjs +0 -0
  589. /package/files/{velo → templates/velo[D]/files}/typedoc.json +0 -0
  590. /package/files/{velo/typescript/backend/data.ts → templates/velo[D]/files/typescript/__mocks__/.gitkeep} +0 -0
  591. /package/files/{velo/typescript/backend/events.ts → templates/velo[D]/files/typescript/backend/data.ts} +0 -0
  592. /package/files/{velo/typescript/public/scss/app.scss → templates/velo[D]/files/typescript/backend/events.ts} +0 -0
  593. /package/files/{velo → templates/velo[D]/files}/typescript/backend/http-functions.ts +0 -0
  594. /package/files/{velo → templates/velo[D]/files}/typescript/backend/lib/http-functions/sync.ts +0 -0
  595. /package/files/{velo → templates/velo[D]/files}/typescript/backend/permissions.json +0 -0
  596. /package/files/{velo/typescript/styles/global.scss → templates/velo[D]/files/typescript/pages/.gitkeep} +0 -0
  597. /package/{src copy/schemas/index.ts → files/templates/velo[D]/files/typescript/public/.gitkeep} +0 -0
  598. /package/{src copy/schemas/types.ts → files/templates/velo[D]/files/typescript/public/scss/app.scss} +0 -0
  599. /package/files/{velo → templates/velo[D]/files}/typescript/tsconfig.json +0 -0
  600. /package/files/{velo → templates/velo[D]/files}/vitest.config.ts +0 -0
  601. /package/{src copy → old}/Gulpfile.ts +0 -0
  602. /package/{src copy → old}/gulp/backend.ts +0 -0
  603. /package/{src copy → old}/gulp/checks.ts +0 -0
  604. /package/{src copy → old}/gulp/clean.ts +0 -0
  605. /package/{src copy → old}/gulp/copy.ts +0 -0
  606. /package/{src copy → old}/gulp/helpers.ts +0 -0
  607. /package/{src copy → old}/gulp/pages.ts +0 -0
  608. /package/{src copy → old}/gulp/pipeline.ts +0 -0
  609. /package/{src copy → old}/gulp/public.ts +0 -0
  610. /package/{src copy → old}/gulp/styles.ts +0 -0
  611. /package/{src copy → old}/gulp/templates.ts +0 -0
  612. /package/{src copy → old}/gulp/types.ts +0 -0
  613. /package/{src copy → old}/gulp/watchers.ts +0 -0
  614. /package/{src copy → old}/init.ts +0 -0
  615. /package/{src copy → old}/models.ts +0 -0
  616. /package/{src copy → old}/prepare.ts +0 -0
  617. /package/{src copy → old}/settings.json +0 -0
  618. /package/{src copy → old}/sync.ts +0 -0
  619. /package/{src copy → old}/types.d.ts +0 -0
  620. /package/src/{models.ts → schemas/tsconfig.ts} +0 -0
@@ -0,0 +1,57 @@
1
+ package so.sunnysideup.daily_verse
2
+
3
+ import android.app.Application
4
+ import android.content.res.Configuration
5
+
6
+ import com.facebook.react.PackageList
7
+ import com.facebook.react.ReactApplication
8
+ import com.facebook.react.ReactNativeHost
9
+ import com.facebook.react.ReactPackage
10
+ import com.facebook.react.ReactHost
11
+ import com.facebook.react.defaults.DefaultNewArchitectureEntryPoint.load
12
+ import com.facebook.react.defaults.DefaultReactNativeHost
13
+ import com.facebook.react.soloader.OpenSourceMergedSoMapping
14
+ import com.facebook.soloader.SoLoader
15
+
16
+ import expo.modules.ApplicationLifecycleDispatcher
17
+ import expo.modules.ReactNativeHostWrapper
18
+
19
+ class MainApplication : Application(), ReactApplication {
20
+
21
+ override val reactNativeHost: ReactNativeHost = ReactNativeHostWrapper(
22
+ this,
23
+ object : DefaultReactNativeHost(this) {
24
+ override fun getPackages(): List<ReactPackage> {
25
+ val packages = PackageList(this).packages
26
+ // Packages that cannot be autolinked yet can be added manually here, for example:
27
+ // packages.add(MyReactNativePackage())
28
+ return packages
29
+ }
30
+
31
+ override fun getJSMainModuleName(): String = ".expo/.virtual-metro-entry"
32
+
33
+ override fun getUseDeveloperSupport(): Boolean = BuildConfig.DEBUG
34
+
35
+ override val isNewArchEnabled: Boolean = BuildConfig.IS_NEW_ARCHITECTURE_ENABLED
36
+ override val isHermesEnabled: Boolean = BuildConfig.IS_HERMES_ENABLED
37
+ }
38
+ )
39
+
40
+ override val reactHost: ReactHost
41
+ get() = ReactNativeHostWrapper.createReactHost(applicationContext, reactNativeHost)
42
+
43
+ override fun onCreate() {
44
+ super.onCreate()
45
+ SoLoader.init(this, OpenSourceMergedSoMapping)
46
+ if (BuildConfig.IS_NEW_ARCHITECTURE_ENABLED) {
47
+ // If you opted-in for the New Architecture, we load the native entry point for this app.
48
+ load()
49
+ }
50
+ ApplicationLifecycleDispatcher.onApplicationCreate(this)
51
+ }
52
+
53
+ override fun onConfigurationChanged(newConfig: Configuration) {
54
+ super.onConfigurationChanged(newConfig)
55
+ ApplicationLifecycleDispatcher.onConfigurationChanged(this, newConfig)
56
+ }
57
+ }
@@ -0,0 +1,6 @@
1
+ <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
2
+ <item android:drawable="@color/splashscreen_background"/>
3
+ <item>
4
+ <bitmap android:gravity="center" android:src="@drawable/splashscreen_logo"/>
5
+ </item>
6
+ </layer-list>
@@ -0,0 +1,37 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <!-- Copyright (C) 2014 The Android Open Source Project
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ -->
16
+ <inset xmlns:android="http://schemas.android.com/apk/res/android"
17
+ android:insetLeft="@dimen/abc_edit_text_inset_horizontal_material"
18
+ android:insetRight="@dimen/abc_edit_text_inset_horizontal_material"
19
+ android:insetTop="@dimen/abc_edit_text_inset_top_material"
20
+ android:insetBottom="@dimen/abc_edit_text_inset_bottom_material"
21
+ >
22
+
23
+ <selector>
24
+ <!--
25
+ This file is a copy of abc_edit_text_material (https://bit.ly/3k8fX7I).
26
+ The item below with state_pressed="false" and state_focused="false" causes a NullPointerException.
27
+ NullPointerException:tempt to invoke virtual method 'android.graphics.drawable.Drawable android.graphics.drawable.Drawable$ConstantState.newDrawable(android.content.res.Resources)'
28
+
29
+ <item android:state_pressed="false" android:state_focused="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
30
+
31
+ For more info, see https://bit.ly/3CdLStv (react-native/pull/29452) and https://bit.ly/3nxOMoR.
32
+ -->
33
+ <item android:state_enabled="false" android:drawable="@drawable/abc_textfield_default_mtrl_alpha"/>
34
+ <item android:drawable="@drawable/abc_textfield_activated_mtrl_alpha"/>
35
+ </selector>
36
+
37
+ </inset>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <background android:drawable="@color/iconBackground"/>
4
+ <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
5
+ <monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
6
+ </adaptive-icon>
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
3
+ <background android:drawable="@color/iconBackground"/>
4
+ <foreground android:drawable="@mipmap/ic_launcher_foreground"/>
5
+ <monochrome android:drawable="@mipmap/ic_launcher_monochrome"/>
6
+ </adaptive-icon>
@@ -0,0 +1,6 @@
1
+ <resources>
2
+ <color name="splashscreen_background">#D29EFF</color>
3
+ <color name="iconBackground">#ffffff</color>
4
+ <color name="colorPrimary">#023c69</color>
5
+ <color name="colorPrimaryDark">#D29EFF</color>
6
+ </resources>
@@ -0,0 +1,7 @@
1
+ <resources>
2
+ <string name="app_name">Daily Verse</string>
3
+ <string name="expo_system_ui_user_interface_style" translatable="false">automatic</string>
4
+ <string name="expo_runtime_version">1.0.0</string>
5
+ <string name="expo_splash_screen_resize_mode" translatable="false">contain</string>
6
+ <string name="expo_splash_screen_status_bar_translucent" translatable="false">false</string>
7
+ </resources>
@@ -0,0 +1,12 @@
1
+ <resources xmlns:tools="http://schemas.android.com/tools">
2
+ <style name="AppTheme" parent="Theme.EdgeToEdge">
3
+ <item name="android:editTextBackground">@drawable/rn_edit_text_material</item>
4
+ <item name="colorPrimary">@color/colorPrimary</item>
5
+ <item name="android:statusBarColor">#D29EFF</item>
6
+ </style>
7
+ <style name="Theme.App.SplashScreen" parent="Theme.SplashScreen">
8
+ <item name="windowSplashScreenBackground">@color/splashscreen_background</item>
9
+ <item name="windowSplashScreenAnimatedIcon">@drawable/splashscreen_logo</item>
10
+ <item name="postSplashScreenTheme">@style/AppTheme</item>
11
+ </style>
12
+ </resources>
@@ -0,0 +1,3 @@
1
+ <resources>
2
+ <color name="splashscreen_background">#000000</color>
3
+ </resources>
@@ -0,0 +1,37 @@
1
+ // Top-level build file where you can add configuration options common to all sub-projects/modules.
2
+
3
+ buildscript {
4
+ repositories {
5
+ google()
6
+ mavenCentral()
7
+ }
8
+ dependencies {
9
+ classpath('com.android.tools.build:gradle')
10
+ classpath('com.facebook.react:react-native-gradle-plugin')
11
+ classpath('org.jetbrains.kotlin:kotlin-gradle-plugin')
12
+ }
13
+ }
14
+
15
+ def reactNativeAndroidDir = new File(
16
+ providers.exec {
17
+ workingDir(rootDir)
18
+ commandLine("node", "--print", "require.resolve('react-native/package.json')")
19
+ }.standardOutput.asText.get().trim(),
20
+ "../android"
21
+ )
22
+
23
+ allprojects {
24
+ repositories {
25
+ maven {
26
+ // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm
27
+ url(reactNativeAndroidDir)
28
+ }
29
+
30
+ google()
31
+ mavenCentral()
32
+ maven { url 'https://www.jitpack.io' }
33
+ }
34
+ }
35
+
36
+ apply plugin: "expo-root-project"
37
+ apply plugin: "com.facebook.react.rootproject"
@@ -0,0 +1,7 @@
1
+ distributionBase=GRADLE_USER_HOME
2
+ distributionPath=wrapper/dists
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
4
+ networkTimeout=10000
5
+ validateDistributionUrl=true
6
+ zipStoreBase=GRADLE_USER_HOME
7
+ zipStorePath=wrapper/dists
@@ -0,0 +1,59 @@
1
+ # Project-wide Gradle settings.
2
+
3
+ # IDE (e.g. Android Studio) users:
4
+ # Gradle settings configured through the IDE *will override*
5
+ # any settings specified in this file.
6
+
7
+ # For more details on how to configure your build environment visit
8
+ # http://www.gradle.org/docs/current/userguide/build_environment.html
9
+
10
+ # Specifies the JVM arguments used for the daemon process.
11
+ # The setting is particularly useful for tweaking memory settings.
12
+ # Default value: -Xmx512m -XX:MaxMetaspaceSize=256m
13
+ org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
14
+
15
+ # When configured, Gradle will run in incubating parallel mode.
16
+ # This option should only be used with decoupled projects. More details, visit
17
+ # http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18
+ # org.gradle.parallel=true
19
+
20
+ # AndroidX package structure to make it clearer which packages are bundled with the
21
+ # Android operating system, and which are packaged with your app's APK
22
+ # https://developer.android.com/topic/libraries/support-library/androidx-rn
23
+ android.useAndroidX=true
24
+
25
+ # Enable AAPT2 PNG crunching
26
+ android.enablePngCrunchInReleaseBuilds=true
27
+
28
+ # Use this property to specify which architecture you want to build.
29
+ # You can also override it from the CLI using
30
+ # ./gradlew <task> -PreactNativeArchitectures=x86_64
31
+ reactNativeArchitectures=armeabi-v7a,arm64-v8a,x86,x86_64
32
+
33
+ # Use this property to enable support to the new architecture.
34
+ # This will allow you to use TurboModules and the Fabric render in
35
+ # your application. You should enable this flag either if you want
36
+ # to write custom TurboModules/Fabric components OR use libraries that
37
+ # are providing them.
38
+ newArchEnabled=true
39
+
40
+ # Use this property to enable or disable the Hermes JS engine.
41
+ # If set to false, you will be using JSC instead.
42
+ hermesEnabled=true
43
+
44
+ # Enable GIF support in React Native images (~200 B increase)
45
+ expo.gif.enabled=true
46
+ # Enable webp support in React Native images (~85 KB increase)
47
+ expo.webp.enabled=true
48
+ # Enable animated webp support (~3.4 MB increase)
49
+ # Disabled by default because iOS doesn't support animated webp
50
+ expo.webp.animated=false
51
+
52
+ # Enable network inspector
53
+ EX_DEV_CLIENT_NETWORK_INSPECTOR=true
54
+
55
+ # Use legacy packaging to compress native libraries in the resulting APK.
56
+ expo.useLegacyPackaging=false
57
+
58
+ # Whether the app is configured to use edge-to-edge via the app config or `react-native-edge-to-edge` plugin
59
+ expo.edgeToEdgeEnabled=true
@@ -0,0 +1,251 @@
1
+ #!/bin/sh
2
+
3
+ #
4
+ # Copyright © 2015-2021 the original authors.
5
+ #
6
+ # Licensed under the Apache License, Version 2.0 (the "License");
7
+ # you may not use this file except in compliance with the License.
8
+ # You may obtain a copy of the License at
9
+ #
10
+ # https://www.apache.org/licenses/LICENSE-2.0
11
+ #
12
+ # Unless required by applicable law or agreed to in writing, software
13
+ # distributed under the License is distributed on an "AS IS" BASIS,
14
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15
+ # See the License for the specific language governing permissions and
16
+ # limitations under the License.
17
+ #
18
+ # SPDX-License-Identifier: Apache-2.0
19
+ #
20
+
21
+ ##############################################################################
22
+ #
23
+ # Gradle start up script for POSIX generated by Gradle.
24
+ #
25
+ # Important for running:
26
+ #
27
+ # (1) You need a POSIX-compliant shell to run this script. If your /bin/sh is
28
+ # noncompliant, but you have some other compliant shell such as ksh or
29
+ # bash, then to run this script, type that shell name before the whole
30
+ # command line, like:
31
+ #
32
+ # ksh Gradle
33
+ #
34
+ # Busybox and similar reduced shells will NOT work, because this script
35
+ # requires all of these POSIX shell features:
36
+ # * functions;
37
+ # * expansions «$var», «${var}», «${var:-default}», «${var+SET}»,
38
+ # «${var#prefix}», «${var%suffix}», and «$( cmd )»;
39
+ # * compound commands having a testable exit status, especially «case»;
40
+ # * various built-in commands including «command», «set», and «ulimit».
41
+ #
42
+ # Important for patching:
43
+ #
44
+ # (2) This script targets any POSIX shell, so it avoids extensions provided
45
+ # by Bash, Ksh, etc; in particular arrays are avoided.
46
+ #
47
+ # The "traditional" practice of packing multiple parameters into a
48
+ # space-separated string is a well documented source of bugs and security
49
+ # problems, so this is (mostly) avoided, by progressively accumulating
50
+ # options in "$@", and eventually passing that to Java.
51
+ #
52
+ # Where the inherited environment variables (DEFAULT_JVM_OPTS, JAVA_OPTS,
53
+ # and GRADLE_OPTS) rely on word-splitting, this is performed explicitly;
54
+ # see the in-line comments for details.
55
+ #
56
+ # There are tweaks for specific operating systems such as AIX, CygWin,
57
+ # Darwin, MinGW, and NonStop.
58
+ #
59
+ # (3) This script is generated from the Groovy template
60
+ # https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
61
+ # within the Gradle project.
62
+ #
63
+ # You can find Gradle at https://github.com/gradle/gradle/.
64
+ #
65
+ ##############################################################################
66
+
67
+ # Attempt to set APP_HOME
68
+
69
+ # Resolve links: $0 may be a link
70
+ app_path=$0
71
+
72
+ # Need this for daisy-chained symlinks.
73
+ while
74
+ APP_HOME=${app_path%"${app_path##*/}"} # leaves a trailing /; empty if no leading path
75
+ [ -h "$app_path" ]
76
+ do
77
+ ls=$( ls -ld "$app_path" )
78
+ link=${ls#*' -> '}
79
+ case $link in #(
80
+ /*) app_path=$link ;; #(
81
+ *) app_path=$APP_HOME$link ;;
82
+ esac
83
+ done
84
+
85
+ # This is normally unused
86
+ # shellcheck disable=SC2034
87
+ APP_BASE_NAME=${0##*/}
88
+ # Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
89
+ APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
90
+
91
+ # Use the maximum available, or set MAX_FD != -1 to use that value.
92
+ MAX_FD=maximum
93
+
94
+ warn () {
95
+ echo "$*"
96
+ } >&2
97
+
98
+ die () {
99
+ echo
100
+ echo "$*"
101
+ echo
102
+ exit 1
103
+ } >&2
104
+
105
+ # OS specific support (must be 'true' or 'false').
106
+ cygwin=false
107
+ msys=false
108
+ darwin=false
109
+ nonstop=false
110
+ case "$( uname )" in #(
111
+ CYGWIN* ) cygwin=true ;; #(
112
+ Darwin* ) darwin=true ;; #(
113
+ MSYS* | MINGW* ) msys=true ;; #(
114
+ NONSTOP* ) nonstop=true ;;
115
+ esac
116
+
117
+ CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
118
+
119
+
120
+ # Determine the Java command to use to start the JVM.
121
+ if [ -n "$JAVA_HOME" ] ; then
122
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
123
+ # IBM's JDK on AIX uses strange locations for the executables
124
+ JAVACMD=$JAVA_HOME/jre/sh/java
125
+ else
126
+ JAVACMD=$JAVA_HOME/bin/java
127
+ fi
128
+ if [ ! -x "$JAVACMD" ] ; then
129
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
130
+
131
+ Please set the JAVA_HOME variable in your environment to match the
132
+ location of your Java installation."
133
+ fi
134
+ else
135
+ JAVACMD=java
136
+ if ! command -v java >/dev/null 2>&1
137
+ then
138
+ die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
139
+
140
+ Please set the JAVA_HOME variable in your environment to match the
141
+ location of your Java installation."
142
+ fi
143
+ fi
144
+
145
+ # Increase the maximum file descriptors if we can.
146
+ if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then
147
+ case $MAX_FD in #(
148
+ max*)
149
+ # In POSIX sh, ulimit -H is undefined. That's why the result is checked to see if it worked.
150
+ # shellcheck disable=SC2039,SC3045
151
+ MAX_FD=$( ulimit -H -n ) ||
152
+ warn "Could not query maximum file descriptor limit"
153
+ esac
154
+ case $MAX_FD in #(
155
+ '' | soft) :;; #(
156
+ *)
157
+ # In POSIX sh, ulimit -n is undefined. That's why the result is checked to see if it worked.
158
+ # shellcheck disable=SC2039,SC3045
159
+ ulimit -n "$MAX_FD" ||
160
+ warn "Could not set maximum file descriptor limit to $MAX_FD"
161
+ esac
162
+ fi
163
+
164
+ # Collect all arguments for the java command, stacking in reverse order:
165
+ # * args from the command line
166
+ # * the main class name
167
+ # * -classpath
168
+ # * -D...appname settings
169
+ # * --module-path (only if needed)
170
+ # * DEFAULT_JVM_OPTS, JAVA_OPTS, and GRADLE_OPTS environment variables.
171
+
172
+ # For Cygwin or MSYS, switch paths to Windows format before running java
173
+ if "$cygwin" || "$msys" ; then
174
+ APP_HOME=$( cygpath --path --mixed "$APP_HOME" )
175
+ CLASSPATH=$( cygpath --path --mixed "$CLASSPATH" )
176
+
177
+ JAVACMD=$( cygpath --unix "$JAVACMD" )
178
+
179
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
180
+ for arg do
181
+ if
182
+ case $arg in #(
183
+ -*) false ;; # don't mess with options #(
184
+ /?*) t=${arg#/} t=/${t%%/*} # looks like a POSIX filepath
185
+ [ -e "$t" ] ;; #(
186
+ *) false ;;
187
+ esac
188
+ then
189
+ arg=$( cygpath --path --ignore --mixed "$arg" )
190
+ fi
191
+ # Roll the args list around exactly as many times as the number of
192
+ # args, so each arg winds up back in the position where it started, but
193
+ # possibly modified.
194
+ #
195
+ # NB: a `for` loop captures its iteration list before it begins, so
196
+ # changing the positional parameters here affects neither the number of
197
+ # iterations, nor the values presented in `arg`.
198
+ shift # remove old arg
199
+ set -- "$@" "$arg" # push replacement arg
200
+ done
201
+ fi
202
+
203
+
204
+ # Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
205
+ DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
206
+
207
+ # Collect all arguments for the java command:
208
+ # * DEFAULT_JVM_OPTS, JAVA_OPTS, JAVA_OPTS, and optsEnvironmentVar are not allowed to contain shell fragments,
209
+ # and any embedded shellness will be escaped.
210
+ # * For example: A user cannot expect ${Hostname} to be expanded, as it is an environment variable and will be
211
+ # treated as '${Hostname}' itself on the command line.
212
+
213
+ set -- \
214
+ "-Dorg.gradle.appname=$APP_BASE_NAME" \
215
+ -classpath "$CLASSPATH" \
216
+ org.gradle.wrapper.GradleWrapperMain \
217
+ "$@"
218
+
219
+ # Stop when "xargs" is not available.
220
+ if ! command -v xargs >/dev/null 2>&1
221
+ then
222
+ die "xargs is not available"
223
+ fi
224
+
225
+ # Use "xargs" to parse quoted args.
226
+ #
227
+ # With -n1 it outputs one arg per line, with the quotes and backslashes removed.
228
+ #
229
+ # In Bash we could simply go:
230
+ #
231
+ # readarray ARGS < <( xargs -n1 <<<"$var" ) &&
232
+ # set -- "${ARGS[@]}" "$@"
233
+ #
234
+ # but POSIX shell has neither arrays nor command substitution, so instead we
235
+ # post-process each arg (as a line of input to sed) to backslash-escape any
236
+ # character that might be a shell metacharacter, then use eval to reverse
237
+ # that process (while maintaining the separation between arguments), and wrap
238
+ # the whole thing up as a single "set" statement.
239
+ #
240
+ # This will of course break if any of these variables contains a newline or
241
+ # an unmatched quote.
242
+ #
243
+
244
+ eval "set -- $(
245
+ printf '%s\n' "$DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS" |
246
+ xargs -n1 |
247
+ sed ' s~[^-[:alnum:]+,./:=@_]~\\&~g; ' |
248
+ tr '\n' ' '
249
+ )" '"$@"'
250
+
251
+ exec "$JAVACMD" "$@"