Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Jan 1, 2024
1 parent d030472 commit f1126d0
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
8 changes: 5 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/),
and this project try to adheres to [Semantic Versioning](https://semver.org/).
Go to the `v1` branch to see the changelog of Lume 1.

## [2.0.2] - Unreleased
## [2.0.2] - 2024-01-01
### Added
- Add critical log on rare case where developer forget to export the Site instance in the `_config.ts`

Expand All @@ -23,7 +23,8 @@ Go to the `v1` branch to see the changelog of Lume 1.
- Removed unused `imagick` dependency.
- Added `Lume.PaginateResult` type.
- Apply merge data strategies between multiple _data files/folders in the same folder.
- Updated dependencies: `std`, `esbuild`, `liquid`, `postcssNesting`, `react-dom` types, `sharp`, `svgo`, `vento`, `tailwindcss`, `minify_html`.
- Date recovery from Git repositories [#544].
- Updated dependencies: `std`, `esbuild`, `liquid`, `postcssNesting`, `react-dom` types, `sharp`, `svgo`, `vento`, `tailwindcss`, `minify_html`, `unocss`, `sass`.

## [2.0.1] - 2023-12-10
### Added
Expand Down Expand Up @@ -207,7 +208,8 @@ Go to the `v1` branch to see the changelog of Lume 1.
[#535]: https://github.com/lumeland/lume/issues/535
[#540]: https://github.com/lumeland/lume/issues/540
[#542]: https://github.com/lumeland/lume/issues/542
[#544]: https://github.com/lumeland/lume/issues/544

[2.0.2]: https://github.com/lumeland/lume/compare/v2.0.1...HEAD
[2.0.2]: https://github.com/lumeland/lume/compare/v2.0.1...v2.0.2
[2.0.1]: https://github.com/lumeland/lume/compare/v2.0.0...v2.0.1
[2.0.0]: https://github.com/lumeland/lume/releases/tag/v2.0.0
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 - Oscar Otero
Copyright (c) 2024 - Oscar Otero

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion deps/esbuild.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/x/[email protected].10/mod.js";
export * from "https://deno.land/x/[email protected].11/mod.js";
2 changes: 1 addition & 1 deletion deps/sass.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "npm:[email protected].5";
export * from "npm:[email protected].6";
10 changes: 5 additions & 5 deletions deps/unocss.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
// https://github.com/denoland/deno/issues/19096
import transformerVariantGroupImport from "npm:@unocss/[email protected].0";
import transformerDirectivesImport from "npm:@unocss/[email protected].0";
import transformerVariantGroupImport from "npm:@unocss/[email protected].2";
import transformerDirectivesImport from "npm:@unocss/[email protected].2";

export {
createGenerator,
type SourceCodeTransformer,
type UnocssPluginContext,
type UserConfig,
} from "npm:@unocss/[email protected].0";
export { presetUno } from "npm:@unocss/[email protected].0";
} from "npm:@unocss/[email protected].2";
export { presetUno } from "npm:@unocss/[email protected].2";
export { default as MagicString } from "npm:[email protected]";

// https://github.com/denoland/deno/issues/16458#issuecomment-1295003089
Expand All @@ -17,4 +17,4 @@ export const transformerVariantGroup =
export const transformerDirectives =
transformerDirectivesImport as unknown as typeof transformerDirectivesImport.default;

export const resetUrl = "https://unpkg.com/@unocss/[email protected].0";
export const resetUrl = "https://unpkg.com/@unocss/[email protected].2";

0 comments on commit f1126d0

Please sign in to comment.