Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(unocss): updated deps #596

Merged
merged 1 commit into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
## [2.1.4] - Unreleased
### Fixed
- `esbuild` timeout [#591].
- Updated dependencies: `unocss`.

## [2.1.3] - 2024-03-28
### Added
Expand Down
20 changes: 6 additions & 14 deletions deps/unocss.ts
Original file line number Diff line number Diff line change
@@ -1,20 +1,12 @@
// https://github.com/denoland/deno/issues/19096
import transformerVariantGroupImport from "npm:@unocss/[email protected]";
import transformerDirectivesImport from "npm:@unocss/[email protected]";

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

// https://github.com/denoland/deno/issues/16458#issuecomment-1295003089
export const transformerVariantGroup =
transformerVariantGroupImport as unknown as typeof transformerDirectivesImport.default;
export const transformerDirectives =
transformerDirectivesImport as unknown as typeof transformerDirectivesImport.default;
} from "npm:@unocss/[email protected]";
export { presetUno } from "npm:@unocss/[email protected]";
export { default as transformerVariantGroup } from "npm:@unocss/[email protected]";
export { default as transformerDirectives } from "npm:@unocss/[email protected]";
export { default as MagicString } from "npm:[email protected]";

export const resetUrl = "https://unpkg.com/@unocss/reset@0.58.8";
export const resetUrl = "https://unpkg.com/@unocss/reset@0.59.0";
Loading