optikit 1.1.0 → 1.2.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/CHANGELOG.md +30 -0
- package/CLAUDE.md +239 -0
- package/CODE_QUALITY.md +398 -0
- package/ENHANCEMENTS.md +310 -0
- package/FEATURE_ENHANCEMENTS.md +435 -0
- package/README.md +46 -13
- package/SAFETY_FEATURES.md +396 -0
- package/USAGE.md +232 -38
- package/VERSION_MANAGEMENT.md +438 -0
- package/dist/cli.js +118 -6
- package/dist/commands/build/releases.js +57 -0
- package/dist/commands/buildReleases.js +48 -74
- package/dist/commands/clean/flutter.js +51 -0
- package/dist/commands/clean/ios.js +109 -0
- package/dist/commands/cleanProject.js +34 -4
- package/dist/commands/cleanProjectIos.js +17 -7
- package/dist/commands/config/init.js +54 -0
- package/dist/commands/config/rollback.js +161 -0
- package/dist/commands/generateModule.js +39 -11
- package/dist/commands/init.js +54 -0
- package/dist/commands/openProject.js +17 -0
- package/dist/commands/project/devices.js +188 -0
- package/dist/commands/project/generate.js +143 -0
- package/dist/commands/project/open.js +63 -0
- package/dist/commands/project/setup.js +46 -0
- package/dist/commands/rollback.js +161 -0
- package/dist/commands/setupVSCode.js +46 -0
- package/dist/commands/updateVersions.js +13 -1
- package/dist/commands/version/bump.js +161 -0
- package/dist/commands/version/update.js +91 -0
- package/dist/commands/version.js +161 -0
- package/dist/constants.js +131 -0
- package/dist/utils/backupHelpers.js +88 -0
- package/dist/utils/buildHelpers.js +55 -0
- package/dist/utils/commandHelpers.js +51 -0
- package/dist/utils/configHelpers.js +80 -0
- package/dist/utils/dryRunHelpers.js +103 -0
- package/dist/utils/fileHelpers.js +2 -1
- package/dist/utils/helpers/build.js +55 -0
- package/dist/utils/helpers/dryRun.js +103 -0
- package/dist/utils/helpers/file.js +24 -0
- package/dist/utils/helpers/string.js +3 -0
- package/dist/utils/helpers/version.js +80 -0
- package/dist/utils/services/backup.js +88 -0
- package/dist/utils/services/command.js +51 -0
- package/dist/utils/services/config.js +80 -0
- package/dist/utils/services/exec.js +132 -0
- package/dist/utils/services/logger.js +15 -0
- package/dist/utils/validationHelpers.js +101 -0
- package/dist/utils/validators/validation.js +101 -0
- package/dist/utils/versionHelpers.js +80 -0
- package/package.json +5 -5
- package/src/cli.ts +172 -6
- package/src/commands/build/releases.ts +79 -0
- package/src/commands/clean/flutter.ts +58 -0
- package/src/commands/{cleanProjectIos.ts → clean/ios.ts} +19 -10
- package/src/commands/config/init.ts +63 -0
- package/src/commands/config/rollback.ts +200 -0
- package/src/commands/project/devices.ts +246 -0
- package/{.history/src/commands/generateModule_20250115160437.ts → src/commands/project/generate.ts} +47 -17
- package/{.history/src/commands/openProject_20241024145058.ts → src/commands/project/open.ts} +29 -8
- package/src/commands/project/setup.ts +50 -0
- package/src/commands/version/bump.ts +202 -0
- package/{.history/src/commands/updateVersions_20250202183023.ts → src/commands/version/update.ts} +30 -14
- package/src/constants.ts +144 -0
- package/src/utils/helpers/build.ts +80 -0
- package/src/utils/helpers/dryRun.ts +124 -0
- package/{.history/src/utils/fileHelpers_20241024143627.ts → src/utils/helpers/file.ts} +3 -2
- package/src/utils/helpers/version.ts +109 -0
- package/src/utils/services/backup.ts +109 -0
- package/src/utils/services/command.ts +76 -0
- package/src/utils/services/config.ts +106 -0
- package/{.history/src/utils/execHelpers_20241118215940.ts → src/utils/services/exec.ts} +1 -1
- package/src/utils/validators/validation.ts +122 -0
- package/.history/.gitignore_20241023143139 +0 -53
- package/.history/.gitignore_20241024014912 +0 -54
- package/.history/.gitignore_20241024014914 +0 -55
- package/.history/.gitignore_20241024014915 +0 -55
- package/.history/.gitignore_20241024014921 +0 -56
- package/.history/.npmignore_20241205005900 +0 -0
- package/.history/.npmignore_20241205005905 +0 -4
- package/.history/.npmignore_20241205005909 +0 -4
- package/.history/.npmignore_20241205005925 +0 -4
- package/.history/CHANGELOG_20250202181744.md +0 -34
- package/.history/CHANGELOG_20250202181748.md +0 -34
- package/.history/CHANGELOG_20250202181814.md +0 -4
- package/.history/CHANGELOG_20250202181815.md +0 -3
- package/.history/CHANGELOG_20250202181821.md +0 -3
- package/.history/CHANGELOG_20250202181824.md +0 -3
- package/.history/CHANGELOG_20250202181825.md +0 -3
- package/.history/CHANGELOG_20250202181827.md +0 -3
- package/.history/CHANGELOG_20250202224530.md +0 -34
- package/.history/CHANGELOG_20250202224539.md +0 -34
- package/.history/CHANGELOG_20250202224542.md +0 -34
- package/.history/CHANGELOG_20250202224543.md +0 -34
- package/.history/CHANGELOG_20250202224545.md +0 -34
- package/.history/CHANGELOG_20250202224555.md +0 -24
- package/.history/CHANGELOG_20250202224601.md +0 -24
- package/.history/CHANGELOG_20250202224605.md +0 -25
- package/.history/CHANGELOG_20250202224607.md +0 -25
- package/.history/CHANGELOG_20250202224608.md +0 -25
- package/.history/CHANGELOG_20250202224937.md +0 -25
- package/.history/CHANGELOG_20250202224942.md +0 -25
- package/.history/CHANGELOG_20250202224944.md +0 -25
- package/.history/CHANGELOG_20250202224957.md +0 -25
- package/.history/CHANGELOG_20250202225000.md +0 -26
- package/.history/CHANGELOG_20250202225004.md +0 -26
- package/.history/CHANGELOG_20250202225008.md +0 -26
- package/.history/CHANGELOG_20250202225013.md +0 -26
- package/.history/CHANGELOG_20250202225014.md +0 -26
- package/.history/CHANGELOG_20250202225018.md +0 -26
- package/.history/CHANGELOG_20250202225021.md +0 -26
- package/.history/CHANGELOG_20250202225023.md +0 -26
- package/.history/CHANGELOG_20250202225026.md +0 -22
- package/.history/CHANGELOG_20250202225028.md +0 -23
- package/.history/CHANGELOG_20250202225032.md +0 -23
- package/.history/CHANGELOG_20250202225035.md +0 -23
- package/.history/CHANGELOG_20250202225037.md +0 -23
- package/.history/CHANGELOG_20250202225039.md +0 -23
- package/.history/CHANGELOG_20250202225041.md +0 -23
- package/.history/CHANGELOG_20250202225048.md +0 -23
- package/.history/CHANGELOG_20250202225049.md +0 -23
- package/.history/INSTALLATION_20250202181653.md +0 -118
- package/.history/INSTALLATION_20250202181656.md +0 -118
- package/.history/INSTALLATION_20250202181659.md +0 -118
- package/.history/INSTALLATION_20250202181702.md +0 -118
- package/.history/INSTALLATION_20250202181705.md +0 -118
- package/.history/INSTALLATION_20250202181708.md +0 -118
- package/.history/INSTALLATION_20250202181712.md +0 -118
- package/.history/INSTALLATION_20250202181718.md +0 -118
- package/.history/INSTALLATION_20250202181725.md +0 -118
- package/.history/INSTALLATION_20250202181727.md +0 -118
- package/.history/INSTALLATION_20250202181728.md +0 -118
- package/.history/INSTALLATION_20250202181730.md +0 -118
- package/.history/INSTALLATION_20250202181732.md +0 -118
- package/.history/INSTALLATION_20250202181736.md +0 -118
- package/.history/README_20241023143422 +0 -0
- package/.history/README_20241023143553 +0 -23
- package/.history/README_20241023143641 +0 -23
- package/.history/README_20241023143657 +0 -23
- package/.history/README_20241023143750 +0 -23
- package/.history/README_20241023143815 +0 -20
- package/.history/README_20241023143818 +0 -20
- package/.history/README_20241023143912 +0 -20
- package/.history/README_20241023143913 +0 -20
- package/.history/README_20241023143914 +0 -22
- package/.history/README_20241023143925 +0 -24
- package/.history/README_20241023143927 +0 -24
- package/.history/README_20241023143946 +0 -25
- package/.history/README_20241023143950 +0 -25
- package/.history/README_20241023143956 +0 -25
- package/.history/README_20241023144000 +0 -25
- package/.history/README_20241023144003 +0 -26
- package/.history/README_20241023144004 +0 -26
- package/.history/README_20241023144007 +0 -26
- package/.history/README_20241023144011 +0 -25
- package/.history/README_20241023144014 +0 -25
- package/.history/README_20241023144117 +0 -25
- package/.history/README_20241023144120 +0 -25
- package/.history/README_20241023144126 +0 -25
- package/.history/README_20241023144132 +0 -26
- package/.history/README_20241023144134 +0 -26
- package/.history/README_20241023144137 +0 -26
- package/.history/README_20241023144140 +0 -27
- package/.history/README_20241023144142 +0 -28
- package/.history/README_20241023144144 +0 -28
- package/.history/README_20241023144149 +0 -30
- package/.history/README_20241023144150 +0 -33
- package/.history/README_20241023144152 +0 -33
- package/.history/README_20241023144158 +0 -33
- package/.history/README_20241023144202 +0 -34
- package/.history/README_20241023144207 +0 -34
- package/.history/README_20241023144213 +0 -35
- package/.history/README_20241023144214 +0 -39
- package/.history/README_20241023144216 +0 -40
- package/.history/README_20241023144218 +0 -40
- package/.history/README_20241023144224 +0 -40
- package/.history/README_20241023144229 +0 -39
- package/.history/README_20241023144237 +0 -41
- package/.history/README_20241023144240 +0 -42
- package/.history/README_20241023144242 +0 -41
- package/.history/README_20241023144253 +0 -35
- package/.history/README_20241023144255 +0 -41
- package/.history/README_20241023144300 +0 -41
- package/.history/README_20241023144303 +0 -41
- package/.history/README_20241023144305 +0 -42
- package/.history/README_20241023144306 +0 -43
- package/.history/README_20241023144315 +0 -40
- package/.history/README_20241023144316 +0 -42
- package/.history/README_20241023144318 +0 -45
- package/.history/README_20241023144320 +0 -43
- package/.history/README_20241023144325 +0 -45
- package/.history/README_20241023144328 +0 -49
- package/.history/README_20241023144329 +0 -50
- package/.history/README_20241023144336 +0 -51
- package/.history/README_20241023144342 +0 -46
- package/.history/README_20241023144343 +0 -50
- package/.history/README_20241023144358 +0 -51
- package/.history/README_20241023144401 +0 -52
- package/.history/README_20241023144405 +0 -53
- package/.history/README_20241023144415 +0 -54
- package/.history/README_20241023144418 +0 -55
- package/.history/README_20241023144420 +0 -55
- package/.history/README_20241023144432 +0 -55
- package/.history/README_20241023144434 +0 -55
- package/.history/README_20241023144435 +0 -56
- package/.history/README_20241023144439 +0 -58
- package/.history/README_20241023144444 +0 -58
- package/.history/README_20241023144449 +0 -60
- package/.history/README_20241023144453 +0 -61
- package/.history/README_20241023144522 +0 -64
- package/.history/README_20241023144524 +0 -65
- package/.history/README_20241023144526 +0 -65
- package/.history/README_20241023144612 +0 -66
- package/.history/README_20241023144615 +0 -67
- package/.history/README_20241023144620 +0 -69
- package/.history/README_20241023144623 +0 -67
- package/.history/README_20241023144628 +0 -67
- package/.history/README_20241023144631 +0 -67
- package/.history/README_20241023144646 +0 -67
- package/.history/README_20241023144648 +0 -67
- package/.history/README_20241023144650 +0 -67
- package/.history/README_20241023144651 +0 -67
- package/.history/README_20241023144652 +0 -68
- package/.history/README_20241023144656 +0 -68
- package/.history/README_20241023144702 +0 -68
- package/.history/README_20241023144707 +0 -68
- package/.history/README_20241023144734 +0 -69
- package/.history/README_20241023144738 +0 -69
- package/.history/README_20241023144757 +0 -69
- package/.history/README_20241023144803 +0 -69
- package/.history/README_20241023144806 +0 -69
- package/.history/README_20241023144809 +0 -69
- package/.history/README_20241023144859 +0 -71
- package/.history/README_20241023144902 +0 -71
- package/.history/README_20241023145013 +0 -71
- package/.history/README_20250202181318.md +0 -49
- package/.history/README_20250202181322.md +0 -49
- package/.history/README_20250202181326.md +0 -49
- package/.history/README_20250202181347.md +0 -49
- package/.history/README_20250202181350.md +0 -49
- package/.history/README_20250202181352.md +0 -49
- package/.history/README_20250202181353.md +0 -49
- package/.history/README_20250202181358.md +0 -49
- package/.history/README_20250202181401.md +0 -49
- package/.history/README_20250202181416.md +0 -49
- package/.history/README_20250202181423.md +0 -49
- package/.history/README_20250202181426.md +0 -49
- package/.history/README_20250202181428.md +0 -49
- package/.history/README_20250202181430.md +0 -49
- package/.history/README_20250202181443.md +0 -49
- package/.history/README_20250202181447.md +0 -49
- package/.history/README_20250202181450.md +0 -49
- package/.history/README_20250202181452.md +0 -49
- package/.history/README_20250202224147.md +0 -55
- package/.history/README_20250202224200.md +0 -55
- package/.history/README_20250202224208.md +0 -55
- package/.history/README_20250202224217.md +0 -55
- package/.history/README_20250202224218.md +0 -55
- package/.history/README_20250202224221.md +0 -55
- package/.history/TROUBLESHOOT_20250202181245.md +0 -60
- package/.history/TROUBLESHOOT_20250202181248.md +0 -60
- package/.history/TROUBLESHOOT_20250202181250.md +0 -60
- package/.history/TROUBLESHOOT_20250202181251.md +0 -60
- package/.history/TROUBLESHOOT_20250202181253.md +0 -60
- package/.history/TROUBLESHOOT_20250202181256.md +0 -60
- package/.history/TROUBLESHOOT_20250202181258.md +0 -60
- package/.history/TROUBLESHOOT_20250202181300.md +0 -60
- package/.history/TROUBLESHOOT_20250202181303.md +0 -60
- package/.history/TROUBLESHOOT_20250202181305.md +0 -60
- package/.history/USAGE_20250202181040.md +0 -155
- package/.history/USAGE_20250202181043.md +0 -155
- package/.history/USAGE_20250202181045.md +0 -155
- package/.history/USAGE_20250202181047.md +0 -155
- package/.history/USAGE_20250202181052.md +0 -155
- package/.history/USAGE_20250202181053.md +0 -155
- package/.history/USAGE_20250202181100.md +0 -155
- package/.history/USAGE_20250202181210.md +0 -155
- package/.history/USAGE_20250202181211.md +0 -155
- package/.history/USAGE_20250202181212.md +0 -155
- package/.history/USAGE_20250202181213.md +0 -155
- package/.history/USAGE_20250202181217.md +0 -155
- package/.history/USAGE_20250202181220.md +0 -155
- package/.history/USAGE_20250202181221.md +0 -155
- package/.history/USAGE_20250202181225.md +0 -155
- package/.history/USAGE_20250202181226.md +0 -155
- package/.history/USAGE_20250202181228.md +0 -155
- package/.history/USAGE_20250202181230.md +0 -155
- package/.history/bin/index_20230521204015.js +0 -77
- package/.history/bin/index_20241022131602.js +0 -10
- package/.history/bin/index_20241022131610.js +0 -10
- package/.history/bin/index_20241022131615.js +0 -12
- package/.history/bin/index_20241022131700.js +0 -13
- package/.history/bin/index_20241022131717.js +0 -13
- package/.history/bin/index_20241022131723.js +0 -13
- package/.history/bin/index_20241022131728.js +0 -12
- package/.history/bin/index_20241022131806.js +0 -38
- package/.history/bin/index_20241022131811.js +0 -38
- package/.history/bin/index_20241022131835.js +0 -46
- package/.history/bin/index_20241022131836.js +0 -45
- package/.history/bin/index_20241022131843.js +0 -45
- package/.history/bin/index_20241022131934.js +0 -39
- package/.history/bin/index_20241022131937.js +0 -32
- package/.history/bin/index_20241022132617.js +0 -45
- package/.history/bin/index_20241022132621.js +0 -40
- package/.history/bin/index_20241022132738.js +0 -72
- package/.history/bin/index_20241022132755.js +0 -72
- package/.history/bin/index_20241022132757.js +0 -72
- package/.history/bin/index_20241022132804.js +0 -74
- package/.history/bin/index_20241022161808.js +0 -40
- package/.history/bin/index_20241022161812.js +0 -34
- package/.history/bin/index_20241022161822.js +0 -37
- package/.history/bin/index_20241022161830.js +0 -39
- package/.history/bin/index_20241022161851.js +0 -45
- package/.history/bin/index_20241022162259.js +0 -44
- package/.history/bin/index_20241022162341.js +0 -70
- package/.history/bin/index_20241022162351.js +0 -82
- package/.history/bin/index_20241022162420.js +0 -84
- package/.history/bin/index_20241022162513.js +0 -84
- package/.history/bin/index_20241022162558.js +0 -84
- package/.history/bin/index_20241022162624.js +0 -84
- package/.history/bin/index_20241022162625.js +0 -84
- package/.history/bin/index_20241022162631.js +0 -84
- package/.history/bin/index_20241022163917.js +0 -85
- package/.history/bin/index_20241022163946.js +0 -84
- package/.history/bin/index_20241022163959.js +0 -105
- package/.history/bin/index_20241022164459.js +0 -206
- package/.history/bin/index_20241022164509.js +0 -205
- package/.history/bin/index_20241022164511.js +0 -203
- package/.history/bin/index_20241022164514.js +0 -201
- package/.history/bin/index_20241022164515.js +0 -200
- package/.history/bin/index_20241022164517.js +0 -199
- package/.history/bin/index_20241022164519.js +0 -198
- package/.history/bin/index_20241022164521.js +0 -197
- package/.history/bin/index_20241022164523.js +0 -196
- package/.history/bin/index_20241022164525.js +0 -195
- package/.history/bin/index_20241022164527.js +0 -194
- package/.history/bin/index_20241022164528.js +0 -193
- package/.history/bin/index_20241022165048.js +0 -186
- package/.history/bin/index_20241022165053.js +0 -187
- package/.history/bin/index_20241022165134.js +0 -187
- package/.history/bin/index_20241022165141.js +0 -187
- package/.history/bin/index_20241022165146.js +0 -187
- package/.history/bin/index_20241022165209.js +0 -187
- package/.history/bin/index_20241022165210.js +0 -187
- package/.history/bin/index_20241022165244.js +0 -187
- package/.history/bin/index_20241022165245.js +0 -187
- package/.history/bin/index_20241022165254.js +0 -187
- package/.history/bin/index_20241022165306.js +0 -187
- package/.history/bin/index_20241022165308.js +0 -187
- package/.history/bin/index_20241022165313.js +0 -187
- package/.history/bin/index_20241022165314.js +0 -187
- package/.history/bin/index_20241022165316.js +0 -187
- package/.history/bin/index_20241022165320.js +0 -187
- package/.history/bin/index_20241022165322.js +0 -187
- package/.history/bin/index_20241022165325.js +0 -187
- package/.history/bin/index_20241022165329.js +0 -187
- package/.history/bin/index_20241022165350.js +0 -187
- package/.history/bin/index_20241022165354.js +0 -187
- package/.history/bin/index_20241022165355.js +0 -187
- package/.history/bin/index_20241022165402.js +0 -187
- package/.history/bin/index_20241022165404.js +0 -187
- package/.history/bin/index_20241022165407.js +0 -187
- package/.history/bin/index_20241022165421.js +0 -187
- package/.history/bin/index_20241022170630.js +0 -194
- package/.history/bin/styles_20230319210040.js +0 -7
- package/.history/bin/styles_20241022131522.js +0 -7
- package/.history/bin/styles_20241022165050.js +0 -8
- package/.history/bin/styles_20241022165113.js +0 -9
- package/.history/bin/styles_20241022165115.js +0 -9
- package/.history/bin/styles_20241022165118.js +0 -9
- package/.history/bin/styles_20241022165119.js +0 -9
- package/.history/bin/styles_20241022165120.js +0 -10
- package/.history/bin/styles_20241022165128.js +0 -10
- package/.history/bin/styles_20241022165130.js +0 -9
- package/.history/bin/styles_20241022165132.js +0 -8
- package/.history/bin/styles_20241022165230.js +0 -8
- package/.history/bin/styles_20241022165234.js +0 -9
- package/.history/bin/styles_20241022165235.js +0 -10
- package/.history/bin/utils_20230501012842.js +0 -159
- package/.history/bin/utils_20241022131457.js +0 -14
- package/.history/homebrew/Formula/optikit_20241205000517.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202182026.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202182029.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202182033.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202182038.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202182041.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202184107.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202184109.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202184112.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202184113.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202184116.rb +0 -19
- package/.history/homebrew/Formula/optikit_20250202184119.rb +0 -19
- package/.history/homebrew/Formula/sheno-cli_20241118225047.rb +0 -0
- package/.history/homebrew/Formula/sheno-cli_20241118225057.rb +0 -21
- package/.history/homebrew/Formula/sheno-cli_20241118225104.rb +0 -20
- package/.history/homebrew/Formula/sheno-cli_20241118225106.rb +0 -19
- package/.history/homebrew/Formula/sheno-cli_20241118232213.rb +0 -19
- package/.history/homebrew/Formula/sheno-cli_20241205000347.rb +0 -19
- package/.history/homebrew/Formula/sheno-cli_20241205000518.rb +0 -19
- package/.history/package-lock_20241230111443.json +0 -10711
- package/.history/package-lock_20250202181632.json +0 -10711
- package/.history/package-lock_20250202181640.json +0 -10711
- package/.history/package-lock_20250202181643.json +0 -10711
- package/.history/package_20250202181504.json +0 -41
- package/.history/package_20250202181506.json +0 -41
- package/.history/package_20250202181509.json +0 -41
- package/.history/package_20250202181512.json +0 -41
- package/.history/package_20250202181515.json +0 -41
- package/.history/package_20250202181517.json +0 -42
- package/.history/package_20250202181519.json +0 -42
- package/.history/package_20250202181520.json +0 -42
- package/.history/package_20250202181523.json +0 -42
- package/.history/package_20250202181525.json +0 -43
- package/.history/package_20250202181529.json +0 -43
- package/.history/package_20250202181531.json +0 -43
- package/.history/package_20250202181532.json +0 -43
- package/.history/package_20250202181534.json +0 -44
- package/.history/package_20250202181536.json +0 -44
- package/.history/package_20250202181538.json +0 -44
- package/.history/package_20250202181541.json +0 -44
- package/.history/package_20250202181544.json +0 -45
- package/.history/package_20250202181546.json +0 -45
- package/.history/package_20250202181548.json +0 -46
- package/.history/package_20250202181550.json +0 -46
- package/.history/package_20250202181554.json +0 -47
- package/.history/package_20250202181556.json +0 -47
- package/.history/package_20250202181601.json +0 -48
- package/.history/package_20250202181602.json +0 -49
- package/.history/package_20250202181604.json +0 -49
- package/.history/package_20250202181608.json +0 -50
- package/.history/package_20250202181614.json +0 -41
- package/.history/package_20250202181802.json +0 -41
- package/.history/package_20250202181803.json +0 -41
- package/.history/package_20250202223937.json +0 -41
- package/.history/package_20250202224455.json +0 -41
- package/.history/package_20250202224502.json +0 -41
- package/.history/src/cli_20250202182252.ts +0 -184
- package/.history/src/cli_20250202183118.ts +0 -185
- package/.history/src/cli_20250202183127.ts +0 -186
- package/.history/src/cli_20250202183129.ts +0 -186
- package/.history/src/cli_20250202183133.ts +0 -187
- package/.history/src/cli_20250202183247.ts +0 -187
- package/.history/src/commands/buildReleases_20241204195718.ts +0 -74
- package/.history/src/commands/buildReleases_20241204195732.ts +0 -75
- package/.history/src/commands/buildReleases_20241204195734.ts +0 -77
- package/.history/src/commands/buildReleases_20241204195736.ts +0 -77
- package/.history/src/commands/buildReleases_20241204195743.ts +0 -77
- package/.history/src/commands/buildReleases_20241204195745.ts +0 -75
- package/.history/src/commands/buildReleases_20241204195754.ts +0 -75
- package/.history/src/commands/buildReleases_20241204195804.ts +0 -76
- package/.history/src/commands/buildReleases_20241204195808.ts +0 -75
- package/.history/src/commands/buildReleases_20241204195858.ts +0 -76
- package/.history/src/commands/buildReleases_20241204195900.ts +0 -76
- package/.history/src/commands/buildReleases_20241204195901.ts +0 -77
- package/.history/src/commands/buildReleases_20241204200214.ts +0 -77
- package/.history/src/commands/buildReleases_20241204200218.ts +0 -107
- package/.history/src/commands/buildReleases_20241204200223.ts +0 -107
- package/.history/src/commands/buildReleases_20241204200224.ts +0 -107
- package/.history/src/commands/buildReleases_20241204200239.ts +0 -101
- package/.history/src/commands/buildReleases_20241204200244.ts +0 -102
- package/.history/src/commands/buildReleases_20241204200246.ts +0 -100
- package/.history/src/commands/buildReleases_20241204200247.ts +0 -101
- package/.history/src/commands/buildReleases_20241204200258.ts +0 -103
- package/.history/src/commands/buildReleases_20241204200414.ts +0 -103
- package/.history/src/commands/buildReleases_20241204201047.ts +0 -103
- package/.history/src/commands/buildReleases_20241204201103.ts +0 -107
- package/.history/src/commands/buildReleases_20241204233950.ts +0 -105
- package/.history/src/commands/buildReleases_20241204233956.ts +0 -103
- package/.history/src/commands/buildReleases_20241204234008.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241023173012.ts +0 -0
- package/.history/src/commands/cleanProjectIos_20241023173019.ts +0 -9
- package/.history/src/commands/cleanProjectIos_20241023173021.ts +0 -9
- package/.history/src/commands/cleanProjectIos_20241023173034.ts +0 -9
- package/.history/src/commands/cleanProjectIos_20241023173035.ts +0 -9
- package/.history/src/commands/cleanProjectIos_20241023173848.ts +0 -10
- package/.history/src/commands/cleanProjectIos_20241023174005.ts +0 -53
- package/.history/src/commands/cleanProjectIos_20241023174007.ts +0 -52
- package/.history/src/commands/cleanProjectIos_20241023174008.ts +0 -51
- package/.history/src/commands/cleanProjectIos_20241023174010.ts +0 -50
- package/.history/src/commands/cleanProjectIos_20241023174012.ts +0 -49
- package/.history/src/commands/cleanProjectIos_20241023174022.ts +0 -48
- package/.history/src/commands/cleanProjectIos_20241023174135.ts +0 -26
- package/.history/src/commands/cleanProjectIos_20241023174138.ts +0 -26
- package/.history/src/commands/cleanProjectIos_20241023174141.ts +0 -26
- package/.history/src/commands/cleanProjectIos_20241023174142.ts +0 -26
- package/.history/src/commands/cleanProjectIos_20241023174146.ts +0 -26
- package/.history/src/commands/cleanProjectIos_20241023174505.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023174507.ts +0 -30
- package/.history/src/commands/cleanProjectIos_20241023174714.ts +0 -29
- package/.history/src/commands/cleanProjectIos_20241023174715.ts +0 -32
- package/.history/src/commands/cleanProjectIos_20241023174718.ts +0 -30
- package/.history/src/commands/cleanProjectIos_20241023174726.ts +0 -30
- package/.history/src/commands/cleanProjectIos_20241023174942.ts +0 -32
- package/.history/src/commands/cleanProjectIos_20241023174950.ts +0 -37
- package/.history/src/commands/cleanProjectIos_20241023174951.ts +0 -37
- package/.history/src/commands/cleanProjectIos_20241023175053.ts +0 -39
- package/.history/src/commands/cleanProjectIos_20241023175100.ts +0 -38
- package/.history/src/commands/cleanProjectIos_20241023175109.ts +0 -38
- package/.history/src/commands/cleanProjectIos_20241023175127.ts +0 -38
- package/.history/src/commands/cleanProjectIos_20241023175135.ts +0 -37
- package/.history/src/commands/cleanProjectIos_20241023175139.ts +0 -38
- package/.history/src/commands/cleanProjectIos_20241023175336.ts +0 -35
- package/.history/src/commands/cleanProjectIos_20241023175349.ts +0 -38
- package/.history/src/commands/cleanProjectIos_20241023175435.ts +0 -34
- package/.history/src/commands/cleanProjectIos_20241023175439.ts +0 -32
- package/.history/src/commands/cleanProjectIos_20241023175911.ts +0 -34
- package/.history/src/commands/cleanProjectIos_20241023175932.ts +0 -33
- package/.history/src/commands/cleanProjectIos_20241023175938.ts +0 -33
- package/.history/src/commands/cleanProjectIos_20241023175942.ts +0 -32
- package/.history/src/commands/cleanProjectIos_20241023175944.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023180132.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023180140.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023181320.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023181404.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023181419.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023181421.ts +0 -31
- package/.history/src/commands/cleanProjectIos_20241023181521.ts +0 -42
- package/.history/src/commands/cleanProjectIos_20241023181522.ts +0 -42
- package/.history/src/commands/cleanProjectIos_20241023181701.ts +0 -49
- package/.history/src/commands/cleanProjectIos_20241023181703.ts +0 -48
- package/.history/src/commands/cleanProjectIos_20241023181705.ts +0 -46
- package/.history/src/commands/cleanProjectIos_20241023181707.ts +0 -44
- package/.history/src/commands/cleanProjectIos_20241023181712.ts +0 -43
- package/.history/src/commands/cleanProjectIos_20241023181749.ts +0 -43
- package/.history/src/commands/cleanProjectIos_20241023181750.ts +0 -43
- package/.history/src/commands/cleanProjectIos_20241023181835.ts +0 -43
- package/.history/src/commands/cleanProjectIos_20241023181838.ts +0 -43
- package/.history/src/commands/cleanProjectIos_20241023181841.ts +0 -43
- package/.history/src/commands/cleanProjectIos_20241023182036.ts +0 -63
- package/.history/src/commands/cleanProjectIos_20241023182038.ts +0 -62
- package/.history/src/commands/cleanProjectIos_20241023182040.ts +0 -63
- package/.history/src/commands/cleanProjectIos_20241023182049.ts +0 -69
- package/.history/src/commands/cleanProjectIos_20241023182051.ts +0 -67
- package/.history/src/commands/cleanProjectIos_20241023182052.ts +0 -66
- package/.history/src/commands/cleanProjectIos_20241023182055.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182134.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182142.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023182212.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023182213.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182219.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182226.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182232.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182237.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182239.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023182256.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023183254.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023183257.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023183347.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023184055.ts +0 -44
- package/.history/src/commands/cleanProjectIos_20241023184057.ts +0 -44
- package/.history/src/commands/cleanProjectIos_20241023184059.ts +0 -44
- package/.history/src/commands/cleanProjectIos_20241023184101.ts +0 -44
- package/.history/src/commands/cleanProjectIos_20241023184102.ts +0 -44
- package/.history/src/commands/cleanProjectIos_20241023232407.ts +0 -69
- package/.history/src/commands/cleanProjectIos_20241023232410.ts +0 -68
- package/.history/src/commands/cleanProjectIos_20241023232412.ts +0 -67
- package/.history/src/commands/cleanProjectIos_20241023232424.ts +0 -66
- package/.history/src/commands/cleanProjectIos_20241023232425.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023232426.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023235028.ts +0 -64
- package/.history/src/commands/cleanProjectIos_20241023235040.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023235041.ts +0 -67
- package/.history/src/commands/cleanProjectIos_20241023235045.ts +0 -65
- package/.history/src/commands/cleanProjectIos_20241023235046.ts +0 -66
- package/.history/src/commands/cleanProjectIos_20241023235049.ts +0 -70
- package/.history/src/commands/cleanProjectIos_20241023235717.ts +0 -56
- package/.history/src/commands/cleanProjectIos_20241023235720.ts +0 -70
- package/.history/src/commands/cleanProjectIos_20241024000004.ts +0 -70
- package/.history/src/commands/cleanProjectIos_20241024000005.ts +0 -70
- package/.history/src/commands/cleanProjectIos_20241024002411.ts +0 -70
- package/.history/src/commands/cleanProjectIos_20241024002413.ts +0 -70
- package/.history/src/commands/cleanProjectIos_20241024002654.ts +0 -58
- package/.history/src/commands/cleanProjectIos_20241024002700.ts +0 -76
- package/.history/src/commands/cleanProjectIos_20241024002702.ts +0 -75
- package/.history/src/commands/cleanProjectIos_20241024002705.ts +0 -75
- package/.history/src/commands/cleanProjectIos_20241024002706.ts +0 -75
- package/.history/src/commands/cleanProjectIos_20241024002720.ts +0 -75
- package/.history/src/commands/cleanProjectIos_20241024002727.ts +0 -89
- package/.history/src/commands/cleanProjectIos_20241024002740.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024002752.ts +0 -101
- package/.history/src/commands/cleanProjectIos_20241024002755.ts +0 -101
- package/.history/src/commands/cleanProjectIos_20241024002756.ts +0 -100
- package/.history/src/commands/cleanProjectIos_20241024002758.ts +0 -99
- package/.history/src/commands/cleanProjectIos_20241024002759.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024002801.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024002818.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024002826.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024002932.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024002935.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024002943.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003018.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003023.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003040.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003042.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003045.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003051.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024003054.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024003058.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003109.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003110.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003121.ts +0 -91
- package/.history/src/commands/cleanProjectIos_20241024003124.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003245.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024003246.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024003258.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003342.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024003450.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024003511.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024003516.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003518.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003533.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003537.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003541.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003547.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003557.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024003602.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241024003603.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241024003624.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241024003636.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003642.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003702.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003706.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003732.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003737.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003739.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003744.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003748.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003751.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003753.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003802.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003806.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003814.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003816.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003821.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003823.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024003837.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024003907.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003913.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024003916.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024003918.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024004029.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024004058.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024004107.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024004109.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024004114.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024004117.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024004203.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024004316.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024004317.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024004320.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024004323.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024023139.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024023142.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024023145.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024023148.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024023157.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024023201.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024023202.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112341.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112347.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112350.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112351.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112400.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112402.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112403.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112405.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112407.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112409.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112412.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112416.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112418.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112428.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112430.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112434.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112437.ts +0 -108
- package/.history/src/commands/cleanProjectIos_20241024112439.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112501.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112505.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112507.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112509.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112515.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112532.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112551.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112559.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112600.ts +0 -107
- package/.history/src/commands/cleanProjectIos_20241024112602.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112604.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112616.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112618.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112620.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024112624.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112625.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112631.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024112633.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024112637.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024112638.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024112639.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024112648.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112649.ts +0 -106
- package/.history/src/commands/cleanProjectIos_20241024112651.ts +0 -100
- package/.history/src/commands/cleanProjectIos_20241024112653.ts +0 -99
- package/.history/src/commands/cleanProjectIos_20241024112700.ts +0 -99
- package/.history/src/commands/cleanProjectIos_20241024112704.ts +0 -99
- package/.history/src/commands/cleanProjectIos_20241024112706.ts +0 -99
- package/.history/src/commands/cleanProjectIos_20241024112715.ts +0 -100
- package/.history/src/commands/cleanProjectIos_20241024112716.ts +0 -100
- package/.history/src/commands/cleanProjectIos_20241024112721.ts +0 -96
- package/.history/src/commands/cleanProjectIos_20241024112723.ts +0 -96
- package/.history/src/commands/cleanProjectIos_20241024112725.ts +0 -96
- package/.history/src/commands/cleanProjectIos_20241024112731.ts +0 -95
- package/.history/src/commands/cleanProjectIos_20241024112803.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024112807.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024112814.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024112820.ts +0 -104
- package/.history/src/commands/cleanProjectIos_20241024112823.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024112825.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024112827.ts +0 -94
- package/.history/src/commands/cleanProjectIos_20241024112841.ts +0 -98
- package/.history/src/commands/cleanProjectIos_20241024112842.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241024112901.ts +0 -101
- package/.history/src/commands/cleanProjectIos_20241024112910.ts +0 -100
- package/.history/src/commands/cleanProjectIos_20241024112918.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024112921.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241024112925.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024112928.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024112929.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024112930.ts +0 -102
- package/.history/src/commands/cleanProjectIos_20241024112947.ts +0 -103
- package/.history/src/commands/cleanProjectIos_20241024143541.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024143549.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024143552.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241024143558.ts +0 -105
- package/.history/src/commands/cleanProjectIos_20241118214123.ts +0 -112
- package/.history/src/commands/cleanProjectIos_20241118214208.ts +0 -112
- package/.history/src/commands/cleanProjectIos_20241118214631.ts +0 -112
- package/.history/src/commands/cleanProjectIos_20241118215222.ts +0 -125
- package/.history/src/commands/cleanProjectIos_20241118215224.ts +0 -124
- package/.history/src/commands/cleanProjectIos_20241118215226.ts +0 -123
- package/.history/src/commands/cleanProjectIos_20241118215242.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215255.ts +0 -123
- package/.history/src/commands/cleanProjectIos_20241118215256.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215257.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215300.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215510.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215512.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215516.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215537.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215539.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215541.ts +0 -122
- package/.history/src/commands/cleanProjectIos_20241118215549.ts +0 -121
- package/.history/src/commands/cleanProjectIos_20241118215551.ts +0 -120
- package/.history/src/commands/cleanProjectIos_20241118215616.ts +0 -120
- package/.history/src/commands/cleanProjectIos_20241118215952.ts +0 -120
- package/.history/src/commands/cleanProjectIos_20241118215957.ts +0 -120
- package/.history/src/commands/cleanProjectIos_20241118215959.ts +0 -120
- package/.history/src/commands/cleanProject_20241023152144.ts +0 -0
- package/.history/src/commands/cleanProject_20241023152403.ts +0 -34
- package/.history/src/commands/cleanProject_20241023152405.ts +0 -30
- package/.history/src/commands/cleanProject_20241023152407.ts +0 -28
- package/.history/src/commands/cleanProject_20241023152408.ts +0 -25
- package/.history/src/commands/cleanProject_20241023153004.ts +0 -25
- package/.history/src/commands/cleanProject_20241023153007.ts +0 -25
- package/.history/src/commands/cleanProject_20241023153204.ts +0 -23
- package/.history/src/commands/cleanProject_20241023170454.ts +0 -23
- package/.history/src/commands/cleanProject_20241023170456.ts +0 -23
- package/.history/src/commands/cleanProject_20241023170458.ts +0 -22
- package/.history/src/commands/cleanProject_20241023170503.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170508.ts +0 -23
- package/.history/src/commands/cleanProject_20241023170511.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170518.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170519.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170522.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170532.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170647.ts +0 -25
- package/.history/src/commands/cleanProject_20241023170648.ts +0 -26
- package/.history/src/commands/cleanProject_20241023170650.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170958.ts +0 -24
- package/.history/src/commands/cleanProject_20241023170959.ts +0 -24
- package/.history/src/commands/cleanProject_20241023172822.ts +0 -30
- package/.history/src/commands/cleanProject_20241023172914.ts +0 -32
- package/.history/src/commands/cleanProject_20241023172942.ts +0 -30
- package/.history/src/commands/cleanProject_20241023173047.ts +0 -24
- package/.history/src/commands/cleanProject_20241023173837.ts +0 -25
- package/.history/src/commands/cleanProject_20241023173844.ts +0 -26
- package/.history/src/commands/cleanProject_20241023233150.ts +0 -36
- package/.history/src/commands/cleanProject_20241023233241.ts +0 -36
- package/.history/src/commands/cleanProject_20241023233245.ts +0 -36
- package/.history/src/commands/cleanProject_20241023233248.ts +0 -35
- package/.history/src/commands/cleanProject_20241023233258.ts +0 -34
- package/.history/src/commands/cleanProject_20241023233302.ts +0 -33
- package/.history/src/commands/cleanProject_20241023233342.ts +0 -33
- package/.history/src/commands/cleanProject_20241023233346.ts +0 -32
- package/.history/src/commands/cleanProject_20241023235254.ts +0 -32
- package/.history/src/commands/cleanProject_20241023235428.ts +0 -45
- package/.history/src/commands/cleanProject_20241023235430.ts +0 -44
- package/.history/src/commands/cleanProject_20241023235431.ts +0 -43
- package/.history/src/commands/cleanProject_20241023235436.ts +0 -43
- package/.history/src/commands/cleanProject_20241023235438.ts +0 -43
- package/.history/src/commands/cleanProject_20241023235441.ts +0 -42
- package/.history/src/commands/cleanProject_20241023235443.ts +0 -42
- package/.history/src/commands/cleanProject_20241023235445.ts +0 -41
- package/.history/src/commands/cleanProject_20241023235534.ts +0 -41
- package/.history/src/commands/cleanProject_20241023235537.ts +0 -41
- package/.history/src/commands/cleanProject_20241023235541.ts +0 -41
- package/.history/src/commands/cleanProject_20241023235543.ts +0 -41
- package/.history/src/commands/cleanProject_20241023235544.ts +0 -41
- package/.history/src/commands/cleanProject_20241023235547.ts +0 -41
- package/.history/src/commands/cleanProject_20241024004505.ts +0 -41
- package/.history/src/commands/cleanProject_20241024004509.ts +0 -41
- package/.history/src/commands/cleanProject_20241024010537.ts +0 -41
- package/.history/src/commands/cleanProject_20241024010811.ts +0 -41
- package/.history/src/commands/cleanProject_20241024010816.ts +0 -41
- package/.history/src/commands/cleanProject_20241024010844.ts +0 -42
- package/.history/src/commands/cleanProject_20241024010850.ts +0 -42
- package/.history/src/commands/cleanProject_20241024011711.ts +0 -42
- package/.history/src/commands/cleanProject_20241024011712.ts +0 -41
- package/.history/src/commands/cleanProject_20241024011729.ts +0 -42
- package/.history/src/commands/cleanProject_20241024011731.ts +0 -42
- package/.history/src/commands/cleanProject_20241024012120.ts +0 -42
- package/.history/src/commands/cleanProject_20241024012122.ts +0 -42
- package/.history/src/commands/cleanProject_20241024012123.ts +0 -41
- package/.history/src/commands/cleanProject_20241024012125.ts +0 -41
- package/.history/src/commands/cleanProject_20241024012129.ts +0 -41
- package/.history/src/commands/cleanProject_20241024012131.ts +0 -41
- package/.history/src/commands/cleanProject_20241024111614.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111616.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111624.ts +0 -41
- package/.history/src/commands/cleanProject_20241024111626.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111912.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111917.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111921.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111925.ts +0 -25
- package/.history/src/commands/cleanProject_20241024111939.ts +0 -26
- package/.history/src/commands/cleanProject_20241024111941.ts +0 -26
- package/.history/src/commands/cleanProject_20241024111942.ts +0 -26
- package/.history/src/commands/cleanProject_20241024111944.ts +0 -26
- package/.history/src/commands/cleanProject_20241024111951.ts +0 -26
- package/.history/src/commands/cleanProject_20241024111954.ts +0 -26
- package/.history/src/commands/cleanProject_20241024111956.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112005.ts +0 -24
- package/.history/src/commands/cleanProject_20241024112007.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112013.ts +0 -24
- package/.history/src/commands/cleanProject_20241024112016.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112017.ts +0 -24
- package/.history/src/commands/cleanProject_20241024112019.ts +0 -24
- package/.history/src/commands/cleanProject_20241024112020.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112111.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112124.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112130.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112137.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112143.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112153.ts +0 -23
- package/.history/src/commands/cleanProject_20241024112326.ts +0 -23
- package/.history/src/commands/cleanProject_20241024143502.ts +0 -26
- package/.history/src/commands/cleanProject_20241024143503.ts +0 -25
- package/.history/src/commands/cleanProject_20241024143506.ts +0 -25
- package/.history/src/commands/cleanProject_20241024143508.ts +0 -25
- package/.history/src/commands/cleanProject_20241024145712.ts +0 -25
- package/.history/src/commands/cleanProject_20241024154051.ts +0 -25
- package/.history/src/commands/cleanProject_20241024154053.ts +0 -25
- package/.history/src/commands/generateModule_20250115155547.ts +0 -166
- package/.history/src/commands/generateModule_20250115155549.ts +0 -166
- package/.history/src/commands/generateModule_20250115155656.ts +0 -164
- package/.history/src/commands/generateModule_20250115155709.ts +0 -166
- package/.history/src/commands/generateModule_20250115155716.ts +0 -165
- package/.history/src/commands/generateModule_20250115155719.ts +0 -165
- package/.history/src/commands/generateModule_20250115155726.ts +0 -165
- package/.history/src/commands/generateModule_20250115155730.ts +0 -165
- package/.history/src/commands/generateModule_20250115155738.ts +0 -165
- package/.history/src/commands/generateModule_20250115155740.ts +0 -165
- package/.history/src/commands/generateModule_20250115155757.ts +0 -165
- package/.history/src/commands/generateModule_20250115155801.ts +0 -165
- package/.history/src/commands/generateModule_20250115160125.ts +0 -165
- package/.history/src/commands/generateModule_20250115160408.ts +0 -164
- package/.history/src/commands/generateModule_20250115160422.ts +0 -163
- package/.history/src/commands/generateModule_20250115160426.ts +0 -162
- package/.history/src/commands/generateModule_20250115160428.ts +0 -161
- package/.history/src/commands/generateModule_20250115160433.ts +0 -160
- package/.history/src/commands/openProject_20241024143400.ts +0 -0
- package/.history/src/commands/openProject_20241024143404.ts +0 -32
- package/.history/src/commands/openProject_20241024143405.ts +0 -31
- package/.history/src/commands/openProject_20241024143407.ts +0 -30
- package/.history/src/commands/openProject_20241024143409.ts +0 -31
- package/.history/src/commands/openProject_20241024143410.ts +0 -32
- package/.history/src/commands/openProject_20241024143709.ts +0 -40
- package/.history/src/commands/openProject_20241024143712.ts +0 -40
- package/.history/src/commands/openProject_20241024143724.ts +0 -39
- package/.history/src/commands/openProject_20241024143727.ts +0 -38
- package/.history/src/commands/openProject_20241024143731.ts +0 -38
- package/.history/src/commands/openProject_20241024143735.ts +0 -38
- package/.history/src/commands/openProject_20241024143742.ts +0 -38
- package/.history/src/commands/openProject_20241024143745.ts +0 -38
- package/.history/src/commands/openProject_20241024143747.ts +0 -40
- package/.history/src/commands/openProject_20241024143800.ts +0 -40
- package/.history/src/commands/openProject_20241024143906.ts +0 -38
- package/.history/src/commands/openProject_20241024143907.ts +0 -39
- package/.history/src/commands/openProject_20241024143912.ts +0 -40
- package/.history/src/commands/openProject_20241024145027.ts +0 -41
- package/.history/src/commands/openProject_20241024145038.ts +0 -52
- package/.history/src/commands/openProject_20241024145040.ts +0 -52
- package/.history/src/commands/openProject_20241024145041.ts +0 -41
- package/.history/src/commands/openProject_20241024145049.ts +0 -52
- package/.history/src/commands/openProject_20241024145055.ts +0 -52
- package/.history/src/commands/openProject_20241024145057.ts +0 -52
- package/.history/src/commands/openProject_20241024145101.ts +0 -51
- package/.history/src/commands/openProject_20241024145102.ts +0 -51
- package/.history/src/commands/updateVersions_20250108102414.ts +0 -120
- package/.history/src/commands/updateVersions_20250108102417.ts +0 -120
- package/.history/src/commands/updateVersions_20250202183006.ts +0 -135
- package/.history/src/commands/updateVersions_20250202183019.ts +0 -120
- package/.history/src/commands/updateVersions_20250202183054.ts +0 -120
- package/.history/src/commands/updateVersions_20250202183100.ts +0 -135
- package/.history/src/package_20241023123535.json +0 -12
- package/.history/src/package_20241023123608.json +0 -19
- package/.history/src/package_20241023123610.json +0 -19
- package/.history/src/package_20241023123612.json +0 -19
- package/.history/src/package_20241023123613.json +0 -19
- package/.history/src/package_20241023123614.json +0 -19
- package/.history/src/package_20241023123616.json +0 -19
- package/.history/src/styles_20241022171619.ts +0 -0
- package/.history/src/styles_20241022171625.ts +0 -8
- package/.history/src/styles_20241022171628.ts +0 -7
- package/.history/src/styles_20241022171632.ts +0 -7
- package/.history/src/styles_20241022172529.ts +0 -11
- package/.history/src/styles_20241022172644.ts +0 -12
- package/.history/src/styles_20241022172646.ts +0 -12
- package/.history/src/styles_20241022172847.ts +0 -9
- package/.history/src/styles_20241022173003.ts +0 -12
- package/.history/src/styles_20241022173005.ts +0 -12
- package/.history/src/styles_20241022173012.ts +0 -9
- package/.history/src/styles_20241022173033.ts +0 -10
- package/.history/src/styles_20241022173058.ts +0 -10
- package/.history/src/styles_20241022173210.ts +0 -10
- package/.history/src/styles_20241022173215.ts +0 -10
- package/.history/src/styles_20241022173348.ts +0 -7
- package/.history/src/styles_20241022173528.ts +0 -7
- package/.history/src/styles_20241022173532.ts +0 -7
- package/.history/src/styles_20241022173745.ts +0 -12
- package/.history/src/styles_20241022173747.ts +0 -10
- package/.history/src/types/json.d_20241118221516.ts +0 -0
- package/.history/src/types/json.d_20241118221525.ts +0 -4
- package/.history/src/types/json.d_20241118222638.ts +0 -5
- package/.history/src/types/json.d_20241118222654.ts +0 -5
- package/.history/src/types/json.d_20241118222658.ts +0 -4
- package/.history/src/types/json.d_20241118222823.ts +0 -4
- package/.history/src/types/json.d_20241118222824.ts +0 -4
- package/.history/src/types/json.d_20241118222914.ts +0 -5
- package/.history/src/types/json.d_20241118222919.ts +0 -5
- package/.history/src/types/json.d_20241118222920.ts +0 -5
- package/.history/src/types/json.d_20241118223606.ts +0 -8
- package/.history/src/types/json.d_20241118223608.ts +0 -8
- package/.history/src/types/json.d_20241118223609.ts +0 -7
- package/.history/src/utils/execH_20241023152325.ts +0 -0
- package/.history/src/utils/execH_20241023152327.ts +0 -1
- package/.history/src/utils/execHelpers_20241118214818.ts +0 -123
- package/.history/src/utils/execHelpers_20241118214823.ts +0 -123
- package/.history/src/utils/execHelpers_20241118215056.ts +0 -122
- package/.history/src/utils/execHelpers_20241118215419.ts +0 -122
- package/.history/src/utils/execHelpers_20241118215429.ts +0 -151
- package/.history/src/utils/execHelpers_20241118215431.ts +0 -150
- package/.history/src/utils/execHelpers_20241118215432.ts +0 -149
- package/.history/src/utils/execHelpers_20241118215434.ts +0 -148
- package/.history/src/utils/execHelpers_20241118215435.ts +0 -147
- package/.history/src/utils/execHelpers_20241118215437.ts +0 -147
- package/.history/src/utils/execHelpers_20241118215438.ts +0 -147
- package/.history/src/utils/execHelpers_20241118215439.ts +0 -146
- package/.history/src/utils/execHelpers_20241118215441.ts +0 -146
- package/.history/src/utils/execHelpers_20241118215705.ts +0 -168
- package/.history/src/utils/execHelpers_20241118215706.ts +0 -146
- package/.history/src/utils/execHelpers_20241118215709.ts +0 -165
- package/.history/src/utils/execHelpers_20241118215711.ts +0 -164
- package/.history/src/utils/execHelpers_20241118215712.ts +0 -164
- package/.history/src/utils/execHelpers_20241118215714.ts +0 -163
- package/.history/src/utils/execHelpers_20241118215715.ts +0 -162
- package/.history/src/utils/execHelpers_20241118215717.ts +0 -161
- package/.history/src/utils/execHelpers_20241118215719.ts +0 -160
- package/.history/src/utils/execHelpers_20241118215722.ts +0 -159
- package/.history/src/utils/execHelpers_20241204224157.ts +0 -157
- package/.history/src/utils/execHelpers_20241204224200.ts +0 -155
- package/.history/src/utils/execHelpers_20241204224203.ts +0 -69
- package/.history/src/utils/execHelpers_20241204230400.ts +0 -155
- package/.history/src/utils/execHelpers_20241204230406.ts +0 -158
- package/.history/src/utils/fileHelpers_20241022171702.ts +0 -0
- package/.history/src/utils/fileHelpers_20241022171708.ts +0 -26
- package/.history/src/utils/fileHelpers_20241022171710.ts +0 -25
- package/.history/src/utils/fileHelpers_20241022172138.ts +0 -28
- package/.history/src/utils/fileHelpers_20241022172140.ts +0 -25
- package/.history/src/utils/fileHelpers_20241022172141.ts +0 -28
- package/.history/src/utils/fileHelpers_20241022172149.ts +0 -25
- package/.history/src/utils/fileHelpers_20241023122746.ts +0 -25
- package/.history/src/utils/fileHelpers_20241023122918.ts +0 -25
- package/.history/src/utils/fileHelpers_20241023123030.ts +0 -25
- package/.history/src/utils/fileHelpers_20241024143618.ts +0 -26
- package/.history/src/utils/fileHelpers_20241024143620.ts +0 -26
- package/.history/src/utils/fileHelpers_20241024143621.ts +0 -27
- package/.history/src/utils/fileHelpers_20241024143624.ts +0 -27
- package/.history/src/utils/fileHelpers_20241024143626.ts +0 -27
- package/.history/src/utils/iosBuildUpdate_20241204195521.ts +0 -19
- package/.history/src/utils/iosBuildUpdate_20241204200446.ts +0 -19
- package/.history/src/utils/iosBuildUpdate_20241204200449.ts +0 -19
- package/.history/src/utils/iosBuildUpdate_20241204214831.ts +0 -19
- package/.history/src/utils/iosBuildUpdate_20241204215416.ts +0 -19
- package/.history/src/utils/iosBuildUpdate_20241204215419.ts +0 -19
- package/.history/src/utils/iosBuildUpdate_20241204220514.ts +0 -20
- package/.history/src/utils/iosBuildUpdate_20241204233937.ts +0 -0
- package/.history/src/utils/loggerHelpers_20241024111758.ts +0 -0
- package/.history/src/utils/loggerHelpers_20241024111808.ts +0 -0
- package/.history/src/utils/loggerHelpers_20241024111811.ts +0 -23
- package/.history/src/utils/loggerHelpers_20241024111815.ts +0 -23
- package/.history/src/utils/loggerHelpers_20241024111817.ts +0 -23
- package/.history/src/utils/loggerHelpers_20241024112049.ts +0 -23
- package/.history/src/utils/loggerHelpers_20241024112052.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024112104.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024112240.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024112250.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024112319.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024113854.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024114008.ts +0 -19
- package/.history/src/utils/loggerHelpers_20241024114041.ts +0 -19
- package/.history/src/utils/stringHelpers_20241022171647.ts +0 -0
- package/.history/src/utils/stringHelpers_20241022171652.ts +0 -4
- package/.history/src/utils/upgrade_ios_version_20241204195456.ts +0 -0
- package/.history/src/utils/upgrade_ios_version_20241204195500.ts +0 -20
- package/.history/src/utils/upgrade_ios_version_20241204195510.ts +0 -20
- package/.history/src/utils/upgrade_ios_version_20241204195512.ts +0 -20
- package/.history/src/utils/upgrade_ios_version_20241204195515.ts +0 -20
- package/.history/src/utils/upgrade_ios_version_20241204195522.ts +0 -19
- package/.history/tsconfig_20241022171444.json +0 -0
- package/.history/tsconfig_20241022171451.json +0 -13
- package/.history/tsconfig_20241022171452.json +0 -13
- package/.history/tsconfig_20241022171455.json +0 -13
- package/.history/tsconfig_20241022171457.json +0 -13
- package/.history/tsconfig_20241022171459.json +0 -13
- package/.history/tsconfig_20241022171830.json +0 -12
- package/.history/tsconfig_20241022171833.json +0 -12
- package/.history/tsconfig_20241022173923.json +0 -12
- package/.history/tsconfig_20241022174319.json +0 -12
- package/.history/tsconfig_20241022174320.json +0 -12
- package/.history/tsconfig_20241022174322.json +0 -12
- package/.history/tsconfig_20241022174323.json +0 -12
- package/.history/tsconfig_20241023112545.json +0 -12
- package/.history/tsconfig_20241023122125.json +0 -13
- package/.history/tsconfig_20241023122216.json +0 -13
- package/.history/tsconfig_20241023123910.json +0 -13
- package/.history/tsconfig_20241023123916.json +0 -13
- package/.history/tsconfig_20241023123920.json +0 -14
- package/.history/tsconfig_20241023123939.json +0 -15
- package/.history/tsconfig_20241023123944.json +0 -15
- package/.history/tsconfig_20241023123947.json +0 -15
- package/.history/tsconfig_20241023124017.json +0 -15
- package/.history/tsconfig_20241023124020.json +0 -15
- package/.history/tsconfig_20241118221307.json +0 -16
- package/.history/tsconfig_20241118221308.json +0 -16
- package/.history/tsconfig_20241118221309.json +0 -16
- package/.history/tsconfig_20241118221310.json +0 -16
- package/.history/tsconfig_20241118221543.json +0 -16
- package/.history/tsconfig_20241118221746.json +0 -16
- package/.history/tsconfig_20241118222725.json +0 -16
- package/.history/tsconfig_20241118222729.json +0 -16
- package/.history/tsconfig_20241118222902.json +0 -16
- package/.history/tsconfig_20241118223011.json +0 -16
- package/.history/tsconfig_20241118223012.json +0 -16
- package/.history/tsconfig_20241118223144.json +0 -16
- package/.history/tsconfig_20241118223419.json +0 -16
- package/.history/tsconfig_20241118223422.json +0 -16
- package/.history/tsconfig_20241118223425.json +0 -16
- package/.history/tsconfig_20241118223428.json +0 -16
- package/.history/tsconfig_20241118223437.json +0 -16
- package/.history/tsconfig_20241118223440.json +0 -16
- package/.history/tsconfig_20241118223447.json +0 -16
- package/.history/tsconfig_20241118223643.json +0 -16
- package/.history/tsconfig_20241118223644.json +0 -16
- package/.history/tsconfig_20241118223646.json +0 -16
- package/.history/tsconfig_20241118223647.json +0 -16
- package/.idea/.name +0 -1
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/mycli.iml +0 -9
- package/.idea/php.xml +0 -9
- package/dist/utils/iosBuildUpdate.js +0 -18
- package/src/commands/buildReleases.ts +0 -102
- package/src/commands/cleanProject.ts +0 -25
- package/src/commands/generateModule.ts +0 -159
- package/src/commands/openProject.ts +0 -51
- package/src/commands/updateVersions.ts +0 -135
- package/src/types/json.d.ts +0 -7
- package/src/utils/execHelpers.ts +0 -158
- package/src/utils/fileHelpers.ts +0 -27
- package/src/utils/loggerHelpers.ts +0 -19
- package/src/utils/stringHelpers.ts +0 -3
- /package/{.history/src/utils/stringHelpers_20241022171654.ts → src/utils/helpers/string.ts} +0 -0
- /package/{.history/src/utils/loggerHelpers_20241024113944.ts → src/utils/services/logger.ts} +0 -0
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
import { validateFlutterProject } from "../../utils/validators/validation.js";
|
|
2
|
+
import { LoggerHelpers } from "../../utils/services/logger.js";
|
|
3
|
+
import {
|
|
4
|
+
getCurrentVersion,
|
|
5
|
+
incrementVersion,
|
|
6
|
+
formatVersion,
|
|
7
|
+
getNextBuildNumber
|
|
8
|
+
} from "../../utils/helpers/version.js";
|
|
9
|
+
import { updateFlutterVersion } from "./update.js";
|
|
10
|
+
import chalk from "chalk";
|
|
11
|
+
|
|
12
|
+
export {
|
|
13
|
+
bumpVersion,
|
|
14
|
+
bumpIosBuildOnly,
|
|
15
|
+
bumpAndroidBuildOnly,
|
|
16
|
+
showCurrentVersion
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* Bumps version with semantic versioning (major, minor, patch)
|
|
21
|
+
* Android build number increments with version
|
|
22
|
+
* iOS build number resets to 1 on version change
|
|
23
|
+
*
|
|
24
|
+
* @param type - Type of version bump (major, minor, patch)
|
|
25
|
+
*/
|
|
26
|
+
async function bumpVersion(
|
|
27
|
+
type: 'major' | 'minor' | 'patch'
|
|
28
|
+
): Promise<void> {
|
|
29
|
+
// Pre-flight validation
|
|
30
|
+
if (!validateFlutterProject()) {
|
|
31
|
+
process.exit(1);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
try {
|
|
35
|
+
const current = getCurrentVersion();
|
|
36
|
+
const newVersion = incrementVersion(current, type);
|
|
37
|
+
|
|
38
|
+
LoggerHelpers.info(`Current version: ${formatVersion(current)}`);
|
|
39
|
+
LoggerHelpers.info(`Bumping ${type} version...`);
|
|
40
|
+
|
|
41
|
+
console.log(chalk.cyan("\nVersion changes:"));
|
|
42
|
+
console.log(chalk.gray(" Old:"), chalk.white(formatVersion(current)));
|
|
43
|
+
console.log(chalk.gray(" New:"), chalk.green.bold(formatVersion(newVersion)));
|
|
44
|
+
|
|
45
|
+
console.log(chalk.cyan("\nBuild number strategy:"));
|
|
46
|
+
console.log(chalk.gray(" Android:"), chalk.white(`${current.buildNumber} → ${newVersion.buildNumber} (incremented)`));
|
|
47
|
+
console.log(chalk.gray(" iOS:"), chalk.white(`${current.buildNumber} → 1 (reset for new version)`));
|
|
48
|
+
console.log();
|
|
49
|
+
|
|
50
|
+
// Update with new version
|
|
51
|
+
// Android uses the incremented build number from version
|
|
52
|
+
// iOS gets reset to 1 for new version releases
|
|
53
|
+
await updateFlutterVersion(
|
|
54
|
+
`${newVersion.major}.${newVersion.minor}.${newVersion.patch}`,
|
|
55
|
+
newVersion.buildNumber.toString(),
|
|
56
|
+
"1" // iOS always starts at 1 for new versions
|
|
57
|
+
);
|
|
58
|
+
|
|
59
|
+
LoggerHelpers.success(`Version bumped to ${formatVersion(newVersion)}`);
|
|
60
|
+
console.log(chalk.gray("\nAndroid build:"), chalk.white(newVersion.buildNumber));
|
|
61
|
+
console.log(chalk.gray("iOS build:"), chalk.white("1"));
|
|
62
|
+
|
|
63
|
+
} catch (error) {
|
|
64
|
+
if (error instanceof Error) {
|
|
65
|
+
LoggerHelpers.error(`Error bumping version: ${error.message}`);
|
|
66
|
+
} else {
|
|
67
|
+
LoggerHelpers.error(`Error bumping version: ${error}`);
|
|
68
|
+
}
|
|
69
|
+
process.exit(1);
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* Increments ONLY iOS build number (for TestFlight builds)
|
|
75
|
+
* Keeps version and Android build number unchanged
|
|
76
|
+
* Perfect for uploading new iOS builds without changing app version
|
|
77
|
+
*
|
|
78
|
+
* Example: 1.0.2+45 (iOS: 45) → 1.0.2+45 (iOS: 46)
|
|
79
|
+
*/
|
|
80
|
+
async function bumpIosBuildOnly(): Promise<void> {
|
|
81
|
+
// Pre-flight validation
|
|
82
|
+
if (!validateFlutterProject()) {
|
|
83
|
+
process.exit(1);
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
try {
|
|
87
|
+
const current = getCurrentVersion();
|
|
88
|
+
const currentVersionString = `${current.major}.${current.minor}.${current.patch}`;
|
|
89
|
+
|
|
90
|
+
// iOS build number increments from current Android build number
|
|
91
|
+
const nextIosBuild = current.buildNumber + 1;
|
|
92
|
+
|
|
93
|
+
LoggerHelpers.info(`Current version: ${formatVersion(current)}`);
|
|
94
|
+
LoggerHelpers.info("Incrementing iOS build number only (for TestFlight)...");
|
|
95
|
+
|
|
96
|
+
console.log(chalk.cyan("\nBuild number changes:"));
|
|
97
|
+
console.log(chalk.gray(" Version:"), chalk.white(`${currentVersionString} (unchanged)`));
|
|
98
|
+
console.log(chalk.gray(" Android:"), chalk.white(`${current.buildNumber} (unchanged)`));
|
|
99
|
+
console.log(chalk.gray(" iOS:"), chalk.white(`${current.buildNumber} → ${nextIosBuild}`), chalk.green("(incremented)"));
|
|
100
|
+
console.log();
|
|
101
|
+
|
|
102
|
+
// Update only iOS build number
|
|
103
|
+
await updateFlutterVersion(
|
|
104
|
+
currentVersionString,
|
|
105
|
+
"", // Empty string means don't update Android
|
|
106
|
+
nextIosBuild.toString()
|
|
107
|
+
);
|
|
108
|
+
|
|
109
|
+
LoggerHelpers.success(`iOS build number incremented to ${nextIosBuild}`);
|
|
110
|
+
console.log(chalk.gray("\nResult:"), chalk.white(`${currentVersionString}+${current.buildNumber} (iOS: ${nextIosBuild})`));
|
|
111
|
+
console.log(chalk.gray("Use this for:"), chalk.white("TestFlight uploads without version changes"));
|
|
112
|
+
|
|
113
|
+
} catch (error) {
|
|
114
|
+
if (error instanceof Error) {
|
|
115
|
+
LoggerHelpers.error(`Error incrementing iOS build: ${error.message}`);
|
|
116
|
+
} else {
|
|
117
|
+
LoggerHelpers.error(`Error incrementing iOS build: ${error}`);
|
|
118
|
+
}
|
|
119
|
+
process.exit(1);
|
|
120
|
+
}
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
/**
|
|
124
|
+
* Increments ONLY Android build number
|
|
125
|
+
* Keeps version and iOS build number unchanged
|
|
126
|
+
*/
|
|
127
|
+
async function bumpAndroidBuildOnly(): Promise<void> {
|
|
128
|
+
// Pre-flight validation
|
|
129
|
+
if (!validateFlutterProject()) {
|
|
130
|
+
process.exit(1);
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
try {
|
|
134
|
+
const current = getCurrentVersion();
|
|
135
|
+
const currentVersionString = `${current.major}.${current.minor}.${current.patch}`;
|
|
136
|
+
const nextAndroidBuild = current.buildNumber + 1;
|
|
137
|
+
|
|
138
|
+
LoggerHelpers.info(`Current version: ${formatVersion(current)}`);
|
|
139
|
+
LoggerHelpers.info("Incrementing Android build number only...");
|
|
140
|
+
|
|
141
|
+
console.log(chalk.cyan("\nBuild number changes:"));
|
|
142
|
+
console.log(chalk.gray(" Version:"), chalk.white(`${currentVersionString} (unchanged)`));
|
|
143
|
+
console.log(chalk.gray(" Android:"), chalk.white(`${current.buildNumber} → ${nextAndroidBuild}`), chalk.green("(incremented)"));
|
|
144
|
+
console.log(chalk.gray(" iOS:"), chalk.white("(unchanged)"));
|
|
145
|
+
console.log();
|
|
146
|
+
|
|
147
|
+
// Update only Android build number
|
|
148
|
+
await updateFlutterVersion(
|
|
149
|
+
currentVersionString,
|
|
150
|
+
nextAndroidBuild.toString(),
|
|
151
|
+
"" // Empty string means don't update iOS
|
|
152
|
+
);
|
|
153
|
+
|
|
154
|
+
LoggerHelpers.success(`Android build number incremented to ${nextAndroidBuild}`);
|
|
155
|
+
|
|
156
|
+
} catch (error) {
|
|
157
|
+
if (error instanceof Error) {
|
|
158
|
+
LoggerHelpers.error(`Error incrementing Android build: ${error.message}`);
|
|
159
|
+
} else {
|
|
160
|
+
LoggerHelpers.error(`Error incrementing Android build: ${error}`);
|
|
161
|
+
}
|
|
162
|
+
process.exit(1);
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/**
|
|
167
|
+
* Shows current version information
|
|
168
|
+
*/
|
|
169
|
+
async function showCurrentVersion(): Promise<void> {
|
|
170
|
+
try {
|
|
171
|
+
const current = getCurrentVersion();
|
|
172
|
+
const versionString = formatVersion(current);
|
|
173
|
+
|
|
174
|
+
console.log(chalk.bold("\n📱 Current Version Information\n"));
|
|
175
|
+
console.log(chalk.cyan("Version:"), chalk.white.bold(versionString));
|
|
176
|
+
console.log(chalk.gray(" Major:"), chalk.white(current.major));
|
|
177
|
+
console.log(chalk.gray(" Minor:"), chalk.white(current.minor));
|
|
178
|
+
console.log(chalk.gray(" Patch:"), chalk.white(current.patch));
|
|
179
|
+
console.log(chalk.gray(" Build:"), chalk.white(current.buildNumber));
|
|
180
|
+
console.log();
|
|
181
|
+
|
|
182
|
+
} catch (error) {
|
|
183
|
+
if (error instanceof Error) {
|
|
184
|
+
LoggerHelpers.error(`Error reading version: ${error.message}`);
|
|
185
|
+
} else {
|
|
186
|
+
LoggerHelpers.error(`Error reading version: ${error}`);
|
|
187
|
+
}
|
|
188
|
+
process.exit(1);
|
|
189
|
+
}
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Helper to get next iOS build number
|
|
194
|
+
* In the future, this could read from Info.plist or project.pbxproj
|
|
195
|
+
* For now, we'll use a simple increment
|
|
196
|
+
*/
|
|
197
|
+
async function getNextIosBuildNumber(): Promise<number> {
|
|
198
|
+
// TODO: Read actual iOS build number from Info.plist or project.pbxproj
|
|
199
|
+
// For now, we'll just increment based on timestamp or simple counter
|
|
200
|
+
const current = getCurrentVersion();
|
|
201
|
+
return current.buildNumber + 1;
|
|
202
|
+
}
|
package/{.history/src/commands/updateVersions_20250202183023.ts → src/commands/version/update.ts}
RENAMED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import fs from "fs";
|
|
2
2
|
import path from "path";
|
|
3
|
-
import { execInIos } from "
|
|
4
|
-
import { LoggerHelpers } from "
|
|
3
|
+
import { execInIos } from "../../utils/services/exec.js";
|
|
4
|
+
import { LoggerHelpers } from "../../utils/services/logger.js";
|
|
5
|
+
import { validateFlutterProject } from "../../utils/validators/validation.js";
|
|
6
|
+
import { createBackup } from "../../utils/services/backup.js";
|
|
5
7
|
|
|
6
8
|
const currentDir = process.cwd();
|
|
7
9
|
|
|
@@ -12,6 +14,11 @@ async function updateFlutterVersion(
|
|
|
12
14
|
build: string,
|
|
13
15
|
iosBuild: string
|
|
14
16
|
) {
|
|
17
|
+
// Pre-flight validation
|
|
18
|
+
if (!validateFlutterProject()) {
|
|
19
|
+
process.exit(1);
|
|
20
|
+
}
|
|
21
|
+
|
|
15
22
|
try {
|
|
16
23
|
// Always update the version since it is required.
|
|
17
24
|
LoggerHelpers.info(`Starting update for version ${version}...`);
|
|
@@ -43,7 +50,7 @@ async function updateFlutterVersion(
|
|
|
43
50
|
error instanceof Error ? error.message : String(error)
|
|
44
51
|
}`
|
|
45
52
|
);
|
|
46
|
-
|
|
53
|
+
process.exit(1);
|
|
47
54
|
}
|
|
48
55
|
}
|
|
49
56
|
|
|
@@ -55,6 +62,9 @@ async function updatePubspecVersionAndBuild(version: string, build: string) {
|
|
|
55
62
|
throw new Error(`pubspec.yaml not found at ${pubspecPath}`);
|
|
56
63
|
}
|
|
57
64
|
|
|
65
|
+
// Create backup before modification
|
|
66
|
+
createBackup(pubspecPath);
|
|
67
|
+
|
|
58
68
|
const pubspecContent = fs.readFileSync(pubspecPath, "utf8");
|
|
59
69
|
|
|
60
70
|
const updatedPubspec = pubspecContent.replace(
|
|
@@ -80,13 +90,16 @@ async function updatePubspecVersionAndBuild(version: string, build: string) {
|
|
|
80
90
|
async function updateIosVersionAndBuild(version: string, iosBuild: string) {
|
|
81
91
|
try {
|
|
82
92
|
const currentDir = process.cwd();
|
|
83
|
-
|
|
93
|
+
|
|
84
94
|
const projectPbxProjPath = path.join(currentDir, "ios/Runner.xcodeproj/project.pbxproj");
|
|
85
|
-
|
|
95
|
+
|
|
86
96
|
if (!fs.existsSync(projectPbxProjPath)) {
|
|
87
97
|
throw new Error(`project.pbxproj not found at ${projectPbxProjPath}`);
|
|
88
98
|
}
|
|
89
|
-
|
|
99
|
+
|
|
100
|
+
// Create backup before modification
|
|
101
|
+
createBackup(projectPbxProjPath);
|
|
102
|
+
|
|
90
103
|
let projectContent = fs.readFileSync(projectPbxProjPath, 'utf8');
|
|
91
104
|
|
|
92
105
|
projectContent = projectContent
|
|
@@ -98,19 +111,22 @@ async function updateIosVersionAndBuild(version: string, iosBuild: string) {
|
|
|
98
111
|
/CURRENT_PROJECT_VERSION\s*=\s*[^;]+;/g,
|
|
99
112
|
`CURRENT_PROJECT_VERSION = ${iosBuild};`
|
|
100
113
|
);
|
|
101
|
-
|
|
114
|
+
|
|
102
115
|
fs.writeFileSync(projectPbxProjPath, projectContent);
|
|
103
|
-
|
|
116
|
+
|
|
104
117
|
LoggerHelpers.success(`Updated MARKETING_VERSION to ${version} and CURRENT_PROJECT_VERSION to ${iosBuild}`);
|
|
105
|
-
|
|
118
|
+
|
|
106
119
|
const infoPlistPath = path.join(currentDir, "ios/Runner/Info.plist");
|
|
107
|
-
|
|
120
|
+
|
|
108
121
|
if (!fs.existsSync(infoPlistPath)) {
|
|
109
122
|
throw new Error(`Info.plist not found at ${infoPlistPath}`);
|
|
110
123
|
}
|
|
111
|
-
|
|
124
|
+
|
|
125
|
+
// Create backup before modification
|
|
126
|
+
createBackup(infoPlistPath);
|
|
127
|
+
|
|
112
128
|
const infoPlistContent = fs.readFileSync(infoPlistPath, "utf8");
|
|
113
|
-
|
|
129
|
+
|
|
114
130
|
const updatedPlist = infoPlistContent
|
|
115
131
|
.replace(
|
|
116
132
|
/<key>CFBundleShortVersionString<\/key>\s*<string>\$\{MARKETING_VERSION\}<\/string>/,
|
|
@@ -120,10 +136,10 @@ async function updateIosVersionAndBuild(version: string, iosBuild: string) {
|
|
|
120
136
|
/<key>CFBundleVersion<\/key>\s*<string>\$\{CURRENT_PROJECT_VERSION\}<\/string>/,
|
|
121
137
|
`<key>CFBundleVersion</key><string>${iosBuild}</string>`
|
|
122
138
|
);
|
|
123
|
-
|
|
139
|
+
|
|
124
140
|
fs.writeFileSync(infoPlistPath, updatedPlist);
|
|
125
141
|
LoggerHelpers.success("Updated Info.plist with the new version and iOS build.");
|
|
126
|
-
|
|
142
|
+
|
|
127
143
|
} catch (error) {
|
|
128
144
|
LoggerHelpers.error(
|
|
129
145
|
`Error while updating iOS version and build: ${
|
package/src/constants.ts
ADDED
|
@@ -0,0 +1,144 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Application-wide constants
|
|
3
|
+
*/
|
|
4
|
+
|
|
5
|
+
// Build configurations
|
|
6
|
+
export const BUILD_CONFIGS = {
|
|
7
|
+
APK: {
|
|
8
|
+
outputPath: "build/app/outputs/symbols",
|
|
9
|
+
flags: ["--release", "--obfuscate"],
|
|
10
|
+
},
|
|
11
|
+
BUNDLE: {
|
|
12
|
+
outputPath: "build/app/outputs/symbols",
|
|
13
|
+
flags: ["--release", "--obfuscate"],
|
|
14
|
+
},
|
|
15
|
+
IOS: {
|
|
16
|
+
flags: ["--release"],
|
|
17
|
+
},
|
|
18
|
+
IPA: {
|
|
19
|
+
flags: ["--release"],
|
|
20
|
+
},
|
|
21
|
+
} as const;
|
|
22
|
+
|
|
23
|
+
// Project structure
|
|
24
|
+
export const PROJECT_PATHS = {
|
|
25
|
+
PUBSPEC: "pubspec.yaml",
|
|
26
|
+
PUBSPEC_LOCK: "pubspec.lock",
|
|
27
|
+
IOS_DIR: "ios",
|
|
28
|
+
ANDROID_DIR: "android",
|
|
29
|
+
LIB_DIR: "lib",
|
|
30
|
+
MODULE_DIR: "lib/module",
|
|
31
|
+
IOS_RUNNER_PROJ: "ios/Runner.xcodeproj",
|
|
32
|
+
IOS_RUNNER_WORKSPACE: "ios/Runner.xcworkspace",
|
|
33
|
+
IOS_PROJECT_PBXPROJ: "ios/Runner.xcodeproj/project.pbxproj",
|
|
34
|
+
IOS_INFO_PLIST: "ios/Runner/Info.plist",
|
|
35
|
+
IOS_PODFILE_LOCK: "ios/Podfile.lock",
|
|
36
|
+
ANDROID_BUILD_GRADLE: "android/build.gradle",
|
|
37
|
+
ANDROID_BUILD_GRADLE_KTS: "android/build.gradle.kts",
|
|
38
|
+
FVM_FLUTTER_SDK: ".fvm/flutter_sdk",
|
|
39
|
+
VSCODE_DIR: ".vscode",
|
|
40
|
+
VSCODE_SETTINGS: ".vscode/settings.json",
|
|
41
|
+
} as const;
|
|
42
|
+
|
|
43
|
+
// Backup configuration
|
|
44
|
+
export const BACKUP_CONFIG = {
|
|
45
|
+
DIR_NAME: ".optikit-backup",
|
|
46
|
+
RETENTION_COUNT: 5,
|
|
47
|
+
} as const;
|
|
48
|
+
|
|
49
|
+
// Module generation
|
|
50
|
+
export const MODULE_STRUCTURE = {
|
|
51
|
+
DIRECTORIES: ["bloc", "event", "state", "screen", "import", "factory"],
|
|
52
|
+
NAME_PATTERN: /^[a-z0-9_]+$/,
|
|
53
|
+
} as const;
|
|
54
|
+
|
|
55
|
+
// Flutter commands
|
|
56
|
+
export const FLUTTER_COMMANDS = {
|
|
57
|
+
CLEAN: "flutter clean",
|
|
58
|
+
PUB_GET: "flutter pub get",
|
|
59
|
+
BUILD_APK: "flutter build apk",
|
|
60
|
+
BUILD_BUNDLE: "flutter build appbundle",
|
|
61
|
+
BUILD_IOS: "flutter build ios",
|
|
62
|
+
BUILD_IPA: "flutter build ipa",
|
|
63
|
+
PRECACHE_IOS: "flutter precache --ios",
|
|
64
|
+
VERSION: "flutter --version",
|
|
65
|
+
} as const;
|
|
66
|
+
|
|
67
|
+
// FVM commands
|
|
68
|
+
export const FVM_COMMANDS = {
|
|
69
|
+
CLEAN: "fvm flutter clean",
|
|
70
|
+
PUB_GET: "fvm flutter pub get",
|
|
71
|
+
BUILD_APK: "fvm flutter build apk",
|
|
72
|
+
BUILD_BUNDLE: "fvm flutter build appbundle",
|
|
73
|
+
BUILD_IOS: "fvm flutter build ios",
|
|
74
|
+
BUILD_IPA: "fvm flutter build ipa",
|
|
75
|
+
PRECACHE_IOS: "fvm flutter precache --ios",
|
|
76
|
+
VERSION: "fvm --version",
|
|
77
|
+
} as const;
|
|
78
|
+
|
|
79
|
+
// iOS commands
|
|
80
|
+
export const IOS_COMMANDS = {
|
|
81
|
+
POD_DEINTEGRATE: "pod deintegrate",
|
|
82
|
+
POD_INSTALL: "pod install",
|
|
83
|
+
POD_UPDATE: "pod update",
|
|
84
|
+
POD_REPO_UPDATE: "pod repo update",
|
|
85
|
+
POD_CACHE_CLEAN: "pod cache clean --all",
|
|
86
|
+
} as const;
|
|
87
|
+
|
|
88
|
+
// IDE commands
|
|
89
|
+
export const IDE_COMMANDS = {
|
|
90
|
+
XCODE: "open ios/Runner.xcworkspace",
|
|
91
|
+
ANDROID_STUDIO: {
|
|
92
|
+
DARWIN: "open -a 'Android Studio' android",
|
|
93
|
+
WIN32: "start android",
|
|
94
|
+
LINUX: "xdg-open android",
|
|
95
|
+
},
|
|
96
|
+
} as const;
|
|
97
|
+
|
|
98
|
+
// VSCode settings template
|
|
99
|
+
export const VSCODE_SETTINGS_TEMPLATE = {
|
|
100
|
+
"dart.flutterSdkPath": ".fvm/flutter_sdk",
|
|
101
|
+
"editor.formatOnSave": true,
|
|
102
|
+
"dart.previewFlutterUiGuides": true,
|
|
103
|
+
"files.exclude": {
|
|
104
|
+
"**/.git": true,
|
|
105
|
+
"**/.DS_Store": true,
|
|
106
|
+
"**/node_modules": true,
|
|
107
|
+
"**/build": true,
|
|
108
|
+
},
|
|
109
|
+
} as const;
|
|
110
|
+
|
|
111
|
+
// Retry configuration
|
|
112
|
+
export const RETRY_CONFIG = {
|
|
113
|
+
DEFAULT_ATTEMPTS: 3,
|
|
114
|
+
DEFAULT_DELAY_MS: 10000,
|
|
115
|
+
IOS_TIMEOUT_MS: 600000,
|
|
116
|
+
} as const;
|
|
117
|
+
|
|
118
|
+
// Help URLs
|
|
119
|
+
export const HELP_URLS = {
|
|
120
|
+
FLUTTER_INSTALL: "https://flutter.dev/docs/get-started/install",
|
|
121
|
+
FVM_INSTALL: "https://fvm.app/docs/getting_started/installation",
|
|
122
|
+
} as const;
|
|
123
|
+
|
|
124
|
+
// Error messages
|
|
125
|
+
export const ERROR_MESSAGES = {
|
|
126
|
+
NOT_FLUTTER_PROJECT: "Not a Flutter project: pubspec.yaml not found.",
|
|
127
|
+
NO_FLUTTER_REFERENCE: "Not a Flutter project: pubspec.yaml does not reference Flutter SDK.",
|
|
128
|
+
FVM_NOT_FOUND: "FVM Flutter SDK not found at .fvm/flutter_sdk",
|
|
129
|
+
FLUTTER_NOT_FOUND: "Flutter SDK not found.",
|
|
130
|
+
IOS_PROJECT_NOT_FOUND: "iOS project directory not found.",
|
|
131
|
+
ANDROID_PROJECT_NOT_FOUND: "Android project directory not found.",
|
|
132
|
+
NO_XCODE_PROJECT: "No Xcode project or workspace found in ios/ directory.",
|
|
133
|
+
NO_BUILD_GRADLE: "No build.gradle found in android/ directory.",
|
|
134
|
+
MODULE_NAME_EMPTY: "Module name cannot be empty.",
|
|
135
|
+
MODULE_NAME_INVALID: "Module name must contain only lowercase letters, numbers, and underscores.",
|
|
136
|
+
} as const;
|
|
137
|
+
|
|
138
|
+
// Info messages
|
|
139
|
+
export const INFO_MESSAGES = {
|
|
140
|
+
RUN_FROM_PROJECT_ROOT: "Please run this command from the root of a Flutter project.",
|
|
141
|
+
ADD_IOS_SUPPORT: "Run 'flutter create .' to add iOS support.",
|
|
142
|
+
ADD_ANDROID_SUPPORT: "Run 'flutter create .' to add Android support.",
|
|
143
|
+
INSTALL_FVM_OR_DISABLE: "Run 'fvm install' or use --disable-fvm flag.",
|
|
144
|
+
} as const;
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
import { execCommand } from "../services/exec.js";
|
|
2
|
+
import { LoggerHelpers } from "../services/logger.js";
|
|
3
|
+
import { validateFlutterProject, validateFlutterSdk, validateIosProject, validateAndroidProject } from "../validators/validation.js";
|
|
4
|
+
|
|
5
|
+
export { executeBuild, BuildConfig };
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Build configuration
|
|
9
|
+
*/
|
|
10
|
+
interface BuildConfig {
|
|
11
|
+
/** Build type name (e.g., "APK", "Bundle", "iOS", "IPA") */
|
|
12
|
+
type: string;
|
|
13
|
+
/** Base Flutter command (e.g., "flutter build apk") */
|
|
14
|
+
command: string;
|
|
15
|
+
/** Additional build flags */
|
|
16
|
+
flags?: string[];
|
|
17
|
+
/** Whether to validate iOS project */
|
|
18
|
+
requireIos?: boolean;
|
|
19
|
+
/** Whether to validate Android project */
|
|
20
|
+
requireAndroid?: boolean;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Executes a Flutter build with common validation and error handling
|
|
25
|
+
*
|
|
26
|
+
* @param config - Build configuration
|
|
27
|
+
* @param noFvm - Whether to disable FVM usage
|
|
28
|
+
*
|
|
29
|
+
* @example
|
|
30
|
+
* await executeBuild({
|
|
31
|
+
* type: "APK",
|
|
32
|
+
* command: "flutter build apk",
|
|
33
|
+
* flags: ["--release", "--obfuscate", "--split-debug-info=build/app/outputs/symbols"],
|
|
34
|
+
* requireAndroid: true
|
|
35
|
+
* }, false);
|
|
36
|
+
*/
|
|
37
|
+
async function executeBuild(config: BuildConfig, noFvm: boolean): Promise<void> {
|
|
38
|
+
const { type, command, flags = [], requireIos = false, requireAndroid = false } = config;
|
|
39
|
+
|
|
40
|
+
LoggerHelpers.info(
|
|
41
|
+
noFvm
|
|
42
|
+
? `Building Flutter ${type} without FVM...`
|
|
43
|
+
: `Building Flutter ${type} with FVM...`
|
|
44
|
+
);
|
|
45
|
+
|
|
46
|
+
// Pre-flight validation
|
|
47
|
+
if (!validateFlutterProject()) {
|
|
48
|
+
process.exit(1);
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
if (!(await validateFlutterSdk(!noFvm))) {
|
|
52
|
+
process.exit(1);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
if (requireIos && !validateIosProject()) {
|
|
56
|
+
process.exit(1);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
if (requireAndroid && !validateAndroidProject()) {
|
|
60
|
+
process.exit(1);
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// Build the full command
|
|
64
|
+
const baseCommand = noFvm ? command : command.replace(/^flutter\s/, "fvm flutter ");
|
|
65
|
+
const fullCommand = flags.length > 0
|
|
66
|
+
? `${baseCommand} ${flags.join(" ")}`
|
|
67
|
+
: baseCommand;
|
|
68
|
+
|
|
69
|
+
try {
|
|
70
|
+
await execCommand(fullCommand);
|
|
71
|
+
LoggerHelpers.success(`Flutter ${type} build successful.`);
|
|
72
|
+
} catch (error) {
|
|
73
|
+
if (error instanceof Error) {
|
|
74
|
+
LoggerHelpers.error(`Error during ${type} build: ${error.message}`);
|
|
75
|
+
} else {
|
|
76
|
+
LoggerHelpers.error(`Error during ${type} build: ${error}`);
|
|
77
|
+
}
|
|
78
|
+
process.exit(1);
|
|
79
|
+
}
|
|
80
|
+
}
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
import { LoggerHelpers } from "../services/logger.js";
|
|
2
|
+
import chalk from "chalk";
|
|
3
|
+
|
|
4
|
+
export { DryRunManager, isDryRunMode, setDryRunMode };
|
|
5
|
+
|
|
6
|
+
/**
|
|
7
|
+
* Global dry-run state
|
|
8
|
+
*/
|
|
9
|
+
let dryRunEnabled = false;
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* Check if dry-run mode is enabled
|
|
13
|
+
*/
|
|
14
|
+
function isDryRunMode(): boolean {
|
|
15
|
+
return dryRunEnabled;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/**
|
|
19
|
+
* Set dry-run mode
|
|
20
|
+
*/
|
|
21
|
+
function setDryRunMode(enabled: boolean): void {
|
|
22
|
+
dryRunEnabled = enabled;
|
|
23
|
+
if (enabled) {
|
|
24
|
+
LoggerHelpers.info(chalk.yellow("🔍 DRY-RUN MODE ENABLED - No commands will be executed"));
|
|
25
|
+
console.log(chalk.gray("Commands will be displayed but not run\n"));
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* Dry-run manager for tracking and displaying operations
|
|
31
|
+
*/
|
|
32
|
+
class DryRunManager {
|
|
33
|
+
private operations: Array<{
|
|
34
|
+
type: string;
|
|
35
|
+
description: string;
|
|
36
|
+
command?: string;
|
|
37
|
+
details?: string;
|
|
38
|
+
}> = [];
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* Log a command that would be executed
|
|
42
|
+
*/
|
|
43
|
+
logCommand(description: string, command: string, details?: string): void {
|
|
44
|
+
if (!isDryRunMode()) return;
|
|
45
|
+
|
|
46
|
+
this.operations.push({
|
|
47
|
+
type: "command",
|
|
48
|
+
description,
|
|
49
|
+
command,
|
|
50
|
+
details,
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
console.log(chalk.cyan("→"), chalk.bold(description));
|
|
54
|
+
console.log(chalk.gray(" Command:"), chalk.white(command));
|
|
55
|
+
if (details) {
|
|
56
|
+
console.log(chalk.gray(" Details:"), details);
|
|
57
|
+
}
|
|
58
|
+
console.log();
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
/**
|
|
62
|
+
* Log a file operation that would be performed
|
|
63
|
+
*/
|
|
64
|
+
logFileOperation(operation: string, filePath: string, details?: string): void {
|
|
65
|
+
if (!isDryRunMode()) return;
|
|
66
|
+
|
|
67
|
+
this.operations.push({
|
|
68
|
+
type: "file",
|
|
69
|
+
description: `${operation}: ${filePath}`,
|
|
70
|
+
details,
|
|
71
|
+
});
|
|
72
|
+
|
|
73
|
+
console.log(chalk.cyan("→"), chalk.bold(operation));
|
|
74
|
+
console.log(chalk.gray(" File:"), chalk.white(filePath));
|
|
75
|
+
if (details) {
|
|
76
|
+
console.log(chalk.gray(" Details:"), details);
|
|
77
|
+
}
|
|
78
|
+
console.log();
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Log a validation check
|
|
83
|
+
*/
|
|
84
|
+
logValidation(check: string, result: boolean, message?: string): void {
|
|
85
|
+
if (!isDryRunMode()) return;
|
|
86
|
+
|
|
87
|
+
const icon = result ? chalk.green("✓") : chalk.red("✗");
|
|
88
|
+
const status = result ? chalk.green("PASS") : chalk.red("FAIL");
|
|
89
|
+
|
|
90
|
+
console.log(icon, chalk.bold(check), status);
|
|
91
|
+
if (message) {
|
|
92
|
+
console.log(chalk.gray(" "), message);
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Display summary of dry-run operations
|
|
98
|
+
*/
|
|
99
|
+
displaySummary(): void {
|
|
100
|
+
if (!isDryRunMode() || this.operations.length === 0) return;
|
|
101
|
+
|
|
102
|
+
console.log(chalk.yellow("\n" + "=".repeat(60)));
|
|
103
|
+
console.log(chalk.yellow.bold("DRY-RUN SUMMARY"));
|
|
104
|
+
console.log(chalk.yellow("=".repeat(60)));
|
|
105
|
+
|
|
106
|
+
const commands = this.operations.filter((op) => op.type === "command");
|
|
107
|
+
const files = this.operations.filter((op) => op.type === "file");
|
|
108
|
+
|
|
109
|
+
console.log(chalk.white(`\nTotal operations: ${this.operations.length}`));
|
|
110
|
+
console.log(chalk.white(` Commands: ${commands.length}`));
|
|
111
|
+
console.log(chalk.white(` File operations: ${files.length}`));
|
|
112
|
+
|
|
113
|
+
console.log(chalk.yellow("\n" + "=".repeat(60)));
|
|
114
|
+
console.log(chalk.gray("No actual changes were made to your system."));
|
|
115
|
+
console.log(chalk.gray("Run without --dry-run to execute these operations.\n"));
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* Reset the operations log
|
|
120
|
+
*/
|
|
121
|
+
reset(): void {
|
|
122
|
+
this.operations = [];
|
|
123
|
+
}
|
|
124
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import fs from "fs";
|
|
2
2
|
import path from "path";
|
|
3
|
-
import { capitalize } from "./
|
|
3
|
+
import { capitalize } from "./string.js";
|
|
4
4
|
|
|
5
5
|
export { createDirectories, writeFile, getClassName };
|
|
6
6
|
|
|
@@ -18,7 +18,8 @@ function writeFile(filePath: string, content: string) {
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
function getClassName(moduleName: string, type: string): string {
|
|
21
|
-
|
|
21
|
+
// Split module name by underscores and capitalize each part
|
|
22
|
+
const defineItems = moduleName.split("_").filter(item => item.length > 0);
|
|
22
23
|
let className = "";
|
|
23
24
|
defineItems.forEach((item) => {
|
|
24
25
|
className += capitalize(item);
|