Skip to content
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
4 changes: 2 additions & 2 deletions packages/fresh/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fresh/core",
"version": "2.2.0",
"version": "2.2.1",
"license": "MIT",
"exports": {
".": "./src/mod.ts",
Expand All @@ -26,7 +26,7 @@
"@std/uuid": "jsr:@std/uuid@^1.0.9",
"@types/node": "npm:@types/node@^24.2.1",
"esbuild-wasm": "npm:esbuild-wasm@^0.25.11",
"preact": "npm:preact@^10.27.2",
"preact": "npm:preact@^10.28.3",
"preact-render-to-string": "npm:preact-render-to-string@^6.6.3"
}
}
6 changes: 3 additions & 3 deletions packages/init/src/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ import * as semver from "@std/semver";
import initConfig from "../deno.json" with { type: "json" };

// Keep these as is, as we replace these version in our release script
const FRESH_VERSION = "2.2.0";
const FRESH_VERSION = "2.2.1";
const FRESH_TAILWIND_VERSION = "1.0.0";
const FRESH_VITE_PLUGIN = "1.0.0";
const PREACT_VERSION = "10.28.2";
const PREACT_SIGNALS_VERSION = "2.5.1";
const PREACT_VERSION = "10.28.3";
const PREACT_SIGNALS_VERSION = "2.7.1";
const TAILWINDCSS_VERSION = "4.1.10";
const TAILWINDCSS_POSTCSS_VERSION = "4.1.10";
const POSTCSS_VERSION = "8.5.6";
Expand Down
2 changes: 1 addition & 1 deletion packages/update/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fresh/update",
"version": "2.2.0",
"version": "2.2.1",
"license": "MIT",
"exports": "./src/mod.ts",
"exclude": ["**/tmp/*"],
Expand Down
6 changes: 3 additions & 3 deletions packages/update/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import { ProgressBar } from "@std/cli/unstable-progress-bar";

export const SyntaxKind = tsmorph.ts.SyntaxKind;

export const FRESH_VERSION = "2.2.0";
export const PREACT_VERSION = "10.28.2";
export const PREACT_SIGNALS_VERSION = "2.5.1";
export const FRESH_VERSION = "2.2.1";
export const PREACT_VERSION = "10.28.3";
export const PREACT_SIGNALS_VERSION = "2.7.1";

// Function to filter out node_modules and vendor directories from logs
const HIDE_FILES = /[\\/]+(node_modules|vendor)[\\/]+/;
Expand Down
Loading