Skip to content

Commit

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

## [0.15.4] - 2024-06-22
### Fixed
- Copy the files uploaded by the CMS [#21].
- Updated deps.

## [0.15.3] - 2024-06-01
### Added
- Allow to customize the post URL in the CMS.
Expand Down Expand Up @@ -214,7 +219,9 @@ First version
[#16]: https://github.com/lumeland/theme-simple-blog/issues/16
[#17]: https://github.com/lumeland/theme-simple-blog/issues/17
[#19]: https://github.com/lumeland/theme-simple-blog/issues/19
[#21]: https://github.com/lumeland/theme-simple-blog/issues/21

[0.15.4]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.3...v0.15.4
[0.15.3]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.2...v0.15.3
[0.15.2]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.1...v0.15.2
[0.15.1]: https://github.com/lumeland/theme-simple-blog/compare/v0.15.0...v0.15.1
Expand Down
4 changes: 2 additions & 2 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"imports": {
"lume/": "https://deno.land/x/[email protected]/",
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@0.5.2/"
"lume/cms/": "https://cdn.jsdelivr.net/gh/lumeland/cms@v0.5.2/"
},
"tasks": {
"lume": "echo \"import 'lume/cli.ts'\" | deno run -A -",
"build": "deno task lume",
"serve": "deno task lume -s",
"changelog": "deno run --allow-read --allow-write https://deno.land/x/[email protected]/bin.ts"
"update-deps": "deno run -A --quiet 'https://deno.land/x/[email protected]/cli.ts' update plugins.ts deno.json"
},
"compilerOptions": {
"types": [
Expand Down
4 changes: 2 additions & 2 deletions plugins.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { merge } from "lume/core/utils/object.ts";
import toc from "https://deno.land/x/[email protected]/toc.ts";
import image from "https://deno.land/x/[email protected]/image.ts";
import footnotes from "https://deno.land/x/[email protected]/footnotes.ts";
import { alert } from "npm:@mdit/plugin-alert@0.8.0";
import { alert } from "npm:@mdit/plugin-alert@0.12.0";

import "lume/types.ts";

Expand Down Expand Up @@ -78,7 +78,7 @@ export default function (userOptions?: Options) {
// Mastodon comment system
site.remoteFile(
"/js/comments.js",
"https://unpkg.com/@oom/[email protected].1/src/comments.js",
"https://unpkg.com/@oom/[email protected].2/src/comments.js",
);
};
}

0 comments on commit ae9854b

Please sign in to comment.