Skip to content

Commit 0b315cd

Browse files
chore: release 2.2.0
- `@fresh/core@2.2.0` - `@fresh/update@2.2.0` - `@fresh/init@2.3.0` - `@fresh/plugin-vite@1.0.8`
1 parent 4553853 commit 0b315cd

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

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.1.4",
3+
"version": "2.2.0",
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.2.2",
3+
"version": "2.3.0",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

packages/init/src/init.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ import * as semver from "@std/semver";
55
import initConfig from "../deno.json" with { type: "json" };
66

77
// Keep these as is, as we replace these version in our release script
8-
const FRESH_VERSION = "2.1.4";
8+
const FRESH_VERSION = "2.2.0";
99
const FRESH_TAILWIND_VERSION = "1.0.0";
1010
const FRESH_VITE_PLUGIN = "1.0.0";
1111
const PREACT_VERSION = "10.27.2";
12-
const PREACT_SIGNALS_VERSION = "2.3.2";
12+
const PREACT_SIGNALS_VERSION = "2.5.0";
1313
const TAILWINDCSS_VERSION = "4.1.10";
1414
const TAILWINDCSS_POSTCSS_VERSION = "4.1.10";
1515
const POSTCSS_VERSION = "8.5.6";

packages/plugin-vite/deno.json

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

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.1.4",
3+
"version": "2.2.0",
44
"license": "MIT",
55
"exports": "./src/mod.ts",
66
"exclude": ["**/tmp/*"],

packages/update/src/update.ts

Lines changed: 2 additions & 2 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.1.4";
9+
export const FRESH_VERSION = "2.2.0";
1010
export const PREACT_VERSION = "10.27.2";
11-
export const PREACT_SIGNALS_VERSION = "2.3.2";
11+
export const PREACT_SIGNALS_VERSION = "2.5.0";
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)