Skip to content

Commit 647d6f9

Browse files
chore: release 2.0.0-alpha.59 (#3231)
Fixes #3229
1 parent 14fe895 commit 647d6f9

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

packages/fresh/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/core",
3-
"version": "2.0.0-alpha.58",
3+
"version": "2.0.0-alpha.59",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts",

packages/init/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/init",
3-
"version": "2.0.0-alpha.58",
3+
"version": "2.0.0-alpha.59",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

packages/init/src/init.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import * as colors from "@std/fmt/colors";
33
import * as path from "@std/path";
44

55
// Keep these as is, as we replace these version in our release script
6-
const FRESH_VERSION = "2.0.0-alpha.58";
6+
const FRESH_VERSION = "2.0.0-alpha.59";
77
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.9";
8-
const PREACT_VERSION = "10.27.0";
9-
const PREACT_SIGNALS_VERSION = "2.2.1";
8+
const PREACT_VERSION = "10.27.1";
9+
const PREACT_SIGNALS_VERSION = "2.3.1";
1010
const TAILWINDCSS_VERSION = "4.1.10";
1111
const TAILWINDCSS_POSTCSS_VERSION = "4.1.10";
1212
const POSTCSS_VERSION = "8.5.6";

packages/update/deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/update",
3-
"version": "2.0.0-alpha.58",
3+
"version": "2.0.0-alpha.59",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

packages/update/src/update.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import { ProgressBar } from "@std/cli/unstable-progress-bar";
66

77
export const SyntaxKind = tsmorph.ts.SyntaxKind;
88

9-
export const FRESH_VERSION = "2.0.0-alpha.58";
10-
export const PREACT_VERSION = "10.27.0";
11-
export const PREACT_SIGNALS_VERSION = "2.2.1";
9+
export const FRESH_VERSION = "2.0.0-alpha.59";
10+
export const PREACT_VERSION = "10.27.1";
11+
export const PREACT_SIGNALS_VERSION = "2.3.1";
1212

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

0 commit comments

Comments
 (0)