nylo_installer 1.8.0
nylo_installer: ^1.8.0 copied to clipboard
CLI tool to create new Nylo Flutter projects. Quickly scaffold production-ready Flutter applications.
1.8.0 - 2026-06-08 #
Added #
nylo locale:find-untranslatedcommand: scans Dart source via the analyzer AST for hardcoded, user-facing strings that are not wrapped in Nylo's.tr()/trans()translation calls. Only strings inside text widgets (Text,SelectableText,RichText,TextSpan) are reported, so keys, route paths, and data values are ignored. Supports--format=<md|json>,--stdout,--ci(exit 1 on findings),--output/-o, and--path, plus// i18n-ignoreline suppression and an optionalnylo_i18n.yamlconfig to override scan globs and text widgets/functionsnylo locale:check-missing-keyscommand: compares everylang/*.jsonlocale file against a baseline locale (defaulten.json) and reports missing, empty, and extra keys per locale, flattening nested JSON to dot-notation to match Nylo's key resolution. Supports--file,--format=<md|txt|json>,--stdout,--ci(exit 1 on missing/empty keys),--strict(also fail on extra keys),--output/-o, and--path; invalid JSON or a missing baseline produces a clean error and exit code 1- Per-command help:
nylo <command> -h/--helpnow prints a usage block (description, usage line, and option list) fornew,clean,test,ios:pod-refresh,self-update, and bothlocale:*commands. The main usage output gained the locale commands, per-command examples, and aRun 'nylo <command> -h' for command-specific help.hint - Exported the locale audit commands and supporting library (
models,config,file_collector,locale_compare,scanner,reporter) fromnylo_installer.dartfor programmatic use
Changed #
- Update-available banner is now suppressed when stdout is not an interactive terminal (CI or piped/redirected output), preventing it from polluting machine-readable output such as the
locale:*JSON reports self-updatenow parses arguments and supports-h/--help- Raised the minimum Dart SDK to
>=3.9.0and added theanalyzer: ^12.0.0andglob: ^2.1.0dependencies, used by the locale scanner and file collector - Reformatted the codebase with the Dart 3.9 formatter (trailing-comma style)
1.7.0 - 2026-05-07 #
Added #
nylo ios:pod-refreshcommand: removes iOS build artifacts (ios/Pods,ios/.symlinks,ios/Podfile.lock) and runspod install --repo-updateto refresh CocoaPods dependencies. macOS-only; errors whenios/is missing or when run on a non-macOS platform- Comprehensive tests for
IosPodRefreshCommandcovering artifact removal, directory validation, and CLI help output
1.6.3 - 2026-04-29 #
Fixed #
- Metro command output: build hook progress and success messages now render on separate lines.
ProcessRunner.runwithinheritStdio: truenow usesProcessStartMode.inheritStdioso the child process is connected directly to the terminal and detects a TTY (also enables interactive metro prompts via inherited stdin)
1.6.2 - 2026-04-23 #
Changed #
- Bumped dependency version constraints:
argsto^2.7.0,pathto^1.9.1, andtestto^1.31.0 - Refreshed
pubspec.lockwith updated transitive dependencies (analyzer, matcher, meta, source_span, vm_service, etc.)
1.6.1 - 2026-03-29 #
Changed #
- Test command: redesigned output to group results by test suite with bold suite headers (e.g.
Test\AuthTest) - Test command: results now stream in real-time as each test completes, rather than buffering all output
- Test command: updated summary format to show
Tests: X passedandDuration: Xs - Test command: added suite display name derivation from file paths using PascalCase
1.6.0 - 2026-03-28 #
1.5.3 - 2026-03-28 #
Changed #
- Test command: removed step counter labels ([1/2], [2/2]) from output for cleaner UI
1.5.2 - 2026-03-28 #
Changed #
- README: added
self-updatecommand to the usage summary and as its own command section
1.5.1 - 2026-03-28 #
Fixed #
- Self-update command: use plain
write()instead ofwriteSuccess()for the "already on latest version" message to remove misleading[SUCCESS]prefix
1.5.0 - 2026-03-28 #
Added #
nylo self-updatecommand: updates nylo_installer to the latest version from pub.dev- Automatic update detection: shows a styled banner after any command when a newer version is available
- Version check caching in
~/.nylo/version_cache.jsonwith 24-hour TTL - 2-second HTTP timeout for version checks — network failures are silently ignored
nylo testcommand: format and run Flutter tests with pretty JSON output, per-test timing, and aggregated pass/fail summarynylo testflags:--no-format,--filter=<pattern>,--coverage,--path=<dir>nylo cleanplatform-specific deep cleaning with--ios,--android, and--allflags- iOS deep clean: removes Pods, .symlinks, Podfile.lock and re-runs
pod install --repo-update - Android deep clean: runs
gradlew clean - Platform directory validation before attempting platform-specific cleans
- Comprehensive tests for
CleanCommandandTestCommand
Changed #
CleanCommand.run()now accepts optional arguments for flag parsing- CLI argument parser uses
allowTrailingOptions: falsefor correct subcommand argument routing - Updated help text with all new command flags and usage examples
1.4.0 - 2026-02-14 #
Added #
- Pubspec description rebranding: replaces
A new Nylo Flutter application.withA new Flutter application.in scaffolded projects - iOS
RunnerTestsbundle identifier replacement inproject.pbxproj(com.nylo.dev.RunnerTeststocom.<projectName>.ios.RunnerTests) - iOS
Info.plistdisplay name replacement (updatesNyloto project title case name) - Android
AndroidManifest.xmllabel replacement (updatesandroid:label="Nylo"to project title case name) - Comprehensive test coverage for all file operations in
NewCommand(pubspec, Android, iOS, .env, .git removal, test imports)
1.3.1 - 2026-02-12 #
Fixed #
- Use backticks instead of double quotes in
NewCommanddoc comment to prevent angle brackets from being interpreted as HTML (fixes pub points static analysis)
1.3.0 - 2026-02-10 #
Added #
- Kotlin source directory renaming during project scaffolding (renames
com/nylo/tocom/<projectName>/) - Automatic
packagedeclaration update inMainActivity.ktto match the new project name
1.2.0 - 2026-02-06 #
Added #
- Test file import rewriting in NewCommand: updates
import '/toimport 'package:<project_name>/when scaffolding new Nylo projects
1.1.0 - 2026-02-01 #
Added #
- Automatic environment file setup (copies
.env-exampleto.env) - App key generation step using
nylo_framework:main make:key - New console UI methods:
writeTaskHeader,writeSubtaskPending,writeSubtaskComplete
Changed #
- Improved console output with task headers and subtask indicators
- Updated spinner alignment for better visual consistency
- Updated bundle identifier patterns for Android (
com.nylo.android) and iOS (com.nylo.ios)
1.0.2 - 2026-01-31 #
- Update screenshots
1.0.1 - 2026-01-31 #
- Update screenshots
1.0.0 - 2026-01-31 #
- Initial release
- Added
nylo new <project_name>command to create new Nylo Flutter projects - Added
nylo initcommand to initialize Nylo in the current directory - Automatic project scaffolding from official Nylo template
- Platform-specific configuration updates (Android, iOS)
- Automatic dependency installation with
flutter pub get
