Skip to content

Commit

Permalink
updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Apr 27, 2024
1 parent f4057eb commit 7c705eb
Show file tree
Hide file tree
Showing 19 changed files with 31 additions and 31 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Go to the `v1` branch to see the changelog of Lume 1.
- `liquid` plugin. It never worked fine with `search.pages()` [#600].

### Fixed
- Updated dependencies: `unocss`, `liquid`, `postcss-nesting`, `terser`, `xml`.
- Updated dependencies: `unocss`, `liquid`, `postcss-nesting`, `terser`, `xml`, `react`, `std`.

## [2.1.4] - 2024-04-17
### Added
Expand Down
2 changes: 1 addition & 1 deletion deps/assert.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/assert/mod.ts";
export * from "https://deno.land/std@0.224.0/assert/mod.ts";
2 changes: 1 addition & 1 deletion deps/base64.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/encoding/base64.ts";
export * from "https://deno.land/std@0.224.0/encoding/base64.ts";
2 changes: 1 addition & 1 deletion deps/cli.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/cli/mod.ts";
export * from "https://deno.land/std@0.224.0/cli/mod.ts";
2 changes: 1 addition & 1 deletion deps/colors.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/fmt/colors.ts";
export * from "https://deno.land/std@0.224.0/fmt/colors.ts";
2 changes: 1 addition & 1 deletion deps/crypto.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/crypto/mod.ts";
export * from "https://deno.land/std@0.224.0/crypto/mod.ts";
4 changes: 2 additions & 2 deletions deps/front_matter.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "https://deno.land/std@0.223.0/front_matter/any.ts";
export { test } from "https://deno.land/std@0.223.0/front_matter/mod.ts";
export * from "https://deno.land/std@0.224.0/front_matter/any.ts";
export { test } from "https://deno.land/std@0.224.0/front_matter/mod.ts";
2 changes: 1 addition & 1 deletion deps/fs.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/fs/mod.ts";
export * from "https://deno.land/std@0.224.0/fs/mod.ts";
2 changes: 1 addition & 1 deletion deps/hex.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/encoding/hex.ts";
export * from "https://deno.land/std@0.224.0/encoding/hex.ts";
2 changes: 1 addition & 1 deletion deps/http.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export { serveFile } from "https://deno.land/std@0.223.0/http/file_server.ts";
export { serveFile } from "https://deno.land/std@0.224.0/http/file_server.ts";
2 changes: 1 addition & 1 deletion deps/jsonc.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/jsonc/mod.ts";
export * from "https://deno.land/std@0.224.0/jsonc/mod.ts";
2 changes: 1 addition & 1 deletion deps/log.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/log/mod.ts";
export * from "https://deno.land/std@0.224.0/log/mod.ts";
2 changes: 1 addition & 1 deletion deps/media_types.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/media_types/mod.ts";
export * from "https://deno.land/std@0.224.0/media_types/mod.ts";
4 changes: 2 additions & 2 deletions deps/path.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export * from "https://deno.land/std@0.223.0/path/mod.ts";
export * as posix from "https://deno.land/std@0.223.0/path/posix/mod.ts";
export * from "https://deno.land/std@0.224.0/path/mod.ts";
export * as posix from "https://deno.land/std@0.224.0/path/posix/mod.ts";
14 changes: 7 additions & 7 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.79"
export { default as React } from "npm:react@18.2.0";
// @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.25/client"
export { default as ReactDOMClient } from "npm:react-dom@18.2.0/client";
export const specifier = "npm:react@18.2.0";
// @deno-types="npm:@types/react@18.3.1"
export { default as React } from "npm:react@18.3.1";
// @deno-types="npm:@types/react-dom@18.3.0/server"
export { default as ReactDOMServer } from "npm:react-dom@18.3.1/server";
// @deno-types="npm:@types/react-dom@18.3.0/client"
export { default as ReactDOMClient } from "npm:react-dom@18.3.1/client";
export const specifier = "npm:react@18.3.1";
2 changes: 1 addition & 1 deletion deps/snapshot.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/testing/snapshot.ts";
export * from "https://deno.land/std@0.224.0/testing/snapshot.ts";
2 changes: 1 addition & 1 deletion deps/toml.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/toml/mod.ts";
export * from "https://deno.land/std@0.224.0/toml/mod.ts";
2 changes: 1 addition & 1 deletion deps/yaml.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.223.0/yaml/mod.ts";
export * from "https://deno.land/std@0.224.0/yaml/mod.ts";
10 changes: 5 additions & 5 deletions tests/__snapshots__/esbuild.test.ts.snap

Large diffs are not rendered by default.

0 comments on commit 7c705eb

Please sign in to comment.