Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Apr 14, 2024
1 parent fdf1f3d commit 8bc0af0
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Go to the `v1` branch to see the changelog of Lume 1.

### Fixed
- `esbuild` timeout [#591].
- Updated dependencies: `unocss`, `pagefind`, `postcss-nesting`, `sass`, `terser`, `vento`, `std`, `preact`, `unocss`.
- Updated dependencies: `unocss`, `pagefind`, `postcss-nesting`, `sass`, `terser`, `vento`, `std`, `preact`, `unocss`, `liquid`, `react` types, `sass`, `tailwind`.

## [2.1.3] - 2024-03-28
### Added
Expand Down
3 changes: 1 addition & 2 deletions deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
"test": "TZ=Z LUME_LOGS=ERROR deno test -A",
"test:update": "deno task test -- --update",
"changelog": "deno run --allow-read --allow-write https://deno.land/x/changelog@v2.5.3/bin.ts",
"update-deps": "deno run -A --quiet 'https://deno.land/x/udd@0.8.2/main.ts' deps/*.ts cms.ts",
"rollback-exp-deps": "git checkout deps/react.ts && git checkout deps/tailwindcss.ts && git checkout deps/cliffy.ts"
"update-deps": "deno run -A --quiet 'https://deno.land/x/nudd@v0.1.1/cli.ts' deps/*.ts cms.ts"
}
}
6 changes: 3 additions & 3 deletions deps/liquid.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export * from "npm:liquidjs@10.10.2";
export * from "npm:liquidjs@10.11.0";

export type { LiquidOptions, Template } from "npm:liquidjs@10.10.2";
export type { LiquidOptions, Template } from "npm:liquidjs@10.11.0";
export type {
TagClass,
TagImplOptions,
} from "npm:liquidjs@10.10.2/dist/template";
} from "npm:liquidjs@10.11.0/dist/template";
6 changes: 3 additions & 3 deletions deps/react.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @deno-types="npm:@types/react@18.2.73"
// @deno-types="npm:@types/react@18.2.78"
export { default as React } from "npm:react@18.2.0";
// @deno-types="npm:@types/react-dom@18.2.23/server"
// @deno-types="npm:@types/react-dom@18.2.25/server"
export { default as ReactDOMServer } from "npm:react-dom@18.2.0/server";
// @deno-types="npm:@types/react-dom@18.2.23/client"
// @deno-types="npm:@types/react-dom@18.2.25/client"
export { default as ReactDOMClient } from "npm:react-dom@18.2.0/client";
export const specifier = "npm:react@18.2.0";
2 changes: 1 addition & 1 deletion deps/sass.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "npm:sass@1.74.1";
export * from "npm:sass@1.75.0";
4 changes: 2 additions & 2 deletions deps/tailwindcss.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export { default } from "npm:tailwindcss@3.4.1";
export type { Config } from "npm:tailwindcss@3.4.1";
export { default } from "npm:tailwindcss@3.4.3";
export type { Config } from "npm:tailwindcss@3.4.3";
10 changes: 5 additions & 5 deletions deps/unocss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ export {
type SourceCodeTransformer,
type UnocssPluginContext,
type UserConfig,
} from "npm:@unocss/core@0.59.1";
export { presetUno } from "npm:@unocss/preset-uno@0.59.1";
export { default as transformerVariantGroup } from "npm:@unocss/transformer-variant-group@0.59.1";
export { default as transformerDirectives } from "npm:@unocss/transformer-directives@0.59.1";
} from "npm:@unocss/core@0.59.2";
export { presetUno } from "npm:@unocss/preset-uno@0.59.2";
export { default as transformerVariantGroup } from "npm:@unocss/transformer-variant-group@0.59.2";
export { default as transformerDirectives } from "npm:@unocss/transformer-directives@0.59.2";
export { default as MagicString } from "npm:magic-string@0.30.9";

export const resetUrl = "https://unpkg.com/@unocss/reset@0.59.1";
export const resetUrl = "https://unpkg.com/@unocss/reset@0.59.2";

0 comments on commit 8bc0af0

Please sign in to comment.