Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jun 3, 2024
1 parent edb8d31 commit 6aaa360
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/) and this
project adheres to [Semantic Versioning](https://semver.org/).

## [0.2.1] - 2024-06-03
### Fixed
- Don't ask for mode if `--plugins` or `--theme` is passed.

## [0.2.0] - 2024-06-03
### Added
- Check Deno version
Expand Down Expand Up @@ -81,6 +85,7 @@ First version
[#1]: https://github.com/lumeland/init/issues/1
[#3]: https://github.com/lumeland/init/issues/3

[0.2.1]: https://github.com/lumeland/init/compare/v0.2.0...v0.2.1
[0.2.0]: https://github.com/lumeland/init/compare/v0.1.12...v0.2.0
[0.1.12]: https://github.com/lumeland/init/compare/v0.1.11...v0.1.12
[0.1.11]: https://github.com/lumeland/init/compare/v0.1.10...v0.1.11
Expand Down
4 changes: 4 additions & 0 deletions steps/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ export default function () {
lume.version = version;
configureLume(deno, version);

if (config.theme || config.plugins) {
return;
}

config.mode = await Select.prompt({
message: "What kind of setup do you want?",
options: [
Expand Down

0 comments on commit 6aaa360

Please sign in to comment.