From f1126d0708db5e0084587abeb883c166a7916b13 Mon Sep 17 00:00:00 2001 From: Oscar Otero Date: Mon, 1 Jan 2024 10:53:52 +0100 Subject: [PATCH] updated deps --- CHANGELOG.md | 8 +++++--- LICENSE | 2 +- deps/esbuild.ts | 2 +- deps/sass.ts | 2 +- deps/unocss.ts | 10 +++++----- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 18bb9193d..de57e82a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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` @@ -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 @@ -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 diff --git a/LICENSE b/LICENSE index 15ab6e072..28127e9fd 100644 --- a/LICENSE +++ b/LICENSE @@ -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 diff --git a/deps/esbuild.ts b/deps/esbuild.ts index 3dc3579bc..6e84cec1b 100644 --- a/deps/esbuild.ts +++ b/deps/esbuild.ts @@ -1 +1 @@ -export * from "https://deno.land/x/esbuild@v0.19.10/mod.js"; +export * from "https://deno.land/x/esbuild@v0.19.11/mod.js"; diff --git a/deps/sass.ts b/deps/sass.ts index 1df0c2bd2..859e5c335 100644 --- a/deps/sass.ts +++ b/deps/sass.ts @@ -1 +1 @@ -export * from "npm:sass@1.69.5"; +export * from "npm:sass@1.69.6"; diff --git a/deps/unocss.ts b/deps/unocss.ts index a9895915b..3dd0734f8 100644 --- a/deps/unocss.ts +++ b/deps/unocss.ts @@ -1,14 +1,14 @@ // https://github.com/denoland/deno/issues/19096 -import transformerVariantGroupImport from "npm:@unocss/transformer-variant-group@0.58.0"; -import transformerDirectivesImport from "npm:@unocss/transformer-directives@0.58.0"; +import transformerVariantGroupImport from "npm:@unocss/transformer-variant-group@0.58.2"; +import transformerDirectivesImport from "npm:@unocss/transformer-directives@0.58.2"; export { createGenerator, type SourceCodeTransformer, type UnocssPluginContext, type UserConfig, -} from "npm:@unocss/core@0.58.0"; -export { presetUno } from "npm:@unocss/preset-uno@0.58.0"; +} from "npm:@unocss/core@0.58.2"; +export { presetUno } from "npm:@unocss/preset-uno@0.58.2"; export { default as MagicString } from "npm:magic-string@0.30.5"; // https://github.com/denoland/deno/issues/16458#issuecomment-1295003089 @@ -17,4 +17,4 @@ export const transformerVariantGroup = export const transformerDirectives = transformerDirectivesImport as unknown as typeof transformerDirectivesImport.default; -export const resetUrl = "https://unpkg.com/@unocss/reset@0.58.0"; +export const resetUrl = "https://unpkg.com/@unocss/reset@0.58.2";