Skip to content

Commit 3d47217

Browse files
committed
Lume 3
1 parent 764fa47 commit 3d47217

File tree

3 files changed

+17
-5
lines changed

3 files changed

+17
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ All notable changes to this project will be documented in this file.
66
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this
77
project adheres to [Semantic Versioning](http://semver.org/).
88

9+
## [0.3.0] - Unreleased
10+
### Changed
11+
- Upgrade to Lume 3
12+
913
## [0.2.0] - 2024-11-30
1014
### Removed
1115
- dprint configuration, because it's already integrated on Deno.
@@ -35,6 +39,7 @@ project adheres to [Semantic Versioning](http://semver.org/).
3539
## [0.1.0] - 2024-03-20
3640
First version
3741

42+
[0.3.0]: https://github.com/lumeland/theme-simple-me/compare/v0.2.0...HEAD
3843
[0.2.0]: https://github.com/lumeland/theme-simple-me/compare/v0.1.4...v0.2.0
3944
[0.1.4]: https://github.com/lumeland/theme-simple-me/compare/v0.1.3...v0.1.4
4045
[0.1.3]: https://github.com/lumeland/theme-simple-me/compare/v0.1.2...v0.1.3

deno.json

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,26 @@
11
{
22
"imports": {
3-
"lume/": "https://deno.land/x/[email protected]/",
4-
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/[email protected]/"
3+
"lume/": "https://cdn.jsdelivr.net/gh/lumeland/lume@c9d1404a01a7aa256968683362414cbb56c9b7a7/",
4+
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@d5d43ed9f6245730b8b7810f9af8eef3a012dd73/",
5+
"lume/jsx-runtime": "https://deno.land/x/[email protected]/jsx-runtime.ts"
56
},
67
"tasks": {
78
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
89
"build": "deno task lume",
9-
"serve": "deno task lume -s"
10+
"serve": "deno task lume -s",
11+
"cms": "deno task lume cms"
1012
},
1113
"compilerOptions": {
1214
"types": [
1315
"lume/types.ts"
14-
]
16+
],
17+
"jsx": "react-jsx",
18+
"jsxImportSource": "lume"
1519
},
1620
"exclude": [
1721
"./_site"
22+
],
23+
"unstable": [
24+
"temporal"
1825
]
1926
}

plugins.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@ export default function () {
2525
return (onWhite + 0.5) > onBlack ? "white" : "black";
2626
});
2727

28-
site.copy([".jpg", ".webp", ".png"]);
28+
site.add([".css", ".jpg", ".webp", ".png"]);
2929
};
3030
}

0 commit comments

Comments
 (0)