Skip to content

Commit

Permalink
hotfix
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jun 4, 2024
1 parent f42ebca commit 16872eb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
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.3] - 2024-06-04
### Fixed
- Lume dev version specifier.

## [0.2.2] - 2024-06-04
### Added
- New `--version | -v` argument to `init` and `upgrade`.
Expand Down Expand Up @@ -89,6 +93,7 @@ First version
[#1]: https://github.com/lumeland/init/issues/1
[#3]: https://github.com/lumeland/init/issues/3

[0.2.3]: https://github.com/lumeland/init/compare/v0.2.2...v0.2.3
[0.2.2]: https://github.com/lumeland/init/compare/v0.2.1...v0.2.2
[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
Expand Down
2 changes: 1 addition & 1 deletion steps/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function configureLume(deno: DenoConfig, version: string) {
deno.imports ??= {};

deno.imports["lume/"] = version.length === 40 // GitHub commit hash
? `https://cdn.jsdelivr.net/gh/lumeland/cms@${version}/`
? `https://cdn.jsdelivr.net/gh/lumeland/lume@${version}/`
: `https://deno.land/x/lume@${version}/`;

// Configure lume tasks
Expand Down

0 comments on commit 16872eb

Please sign in to comment.