Skip to content

Commit 03847e9

Browse files
authored
2.0.0-alpha.26
1 parent 65d61bd commit 03847e9

File tree

9 files changed

+14
-18
lines changed

9 files changed

+14
-18
lines changed

deno.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"./www"
88
],
99
"name": "@fresh/core",
10-
"version": "2.0.0-alpha.25",
10+
"version": "2.0.0-alpha.26",
1111
"license": "MIT",
1212
"exports": {
1313
".": "./src/mod.ts",
@@ -40,7 +40,7 @@
4040
"exclude": ["**/*_test.*", "src/__OLD/**", "*.todo"]
4141
},
4242
"imports": {
43-
"fresh": "jsr:@fresh/core@^2.0.0-alpha.25",
43+
"fresh": "jsr:@fresh/core@^2.0.0-alpha.26",
4444
"preact": "npm:preact@^10.25.1",
4545
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11",
4646
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts",

deno.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/latest/examples/migrating-to-tailwind.md

+2-4
Original file line numberDiff line numberDiff line change
@@ -86,10 +86,8 @@ export default {
8686
"preact": "https://esm.sh/[email protected]",
8787
"preact/": "https://esm.sh/[email protected]/",
8888
- "twind": "https://esm.sh/[email protected]",
89-
- "twind/": "https://esm.sh/[email protected]/",
90-
+ "tailwindcss": "npm:[email protected]",
91-
+ "tailwindcss/": "npm:/[email protected]/",
92-
+ "tailwindcss/plugin": "npm:/[email protected]/plugin.js"
89+
- "twind/": "https://esm.sh/[email protected]/"
90+
+ "tailwindcss": "npm:[email protected]"
9391
}
9492
}
9593
```

init/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/init",
3-
"version": "2.0.0-alpha.25",
3+
"version": "2.0.0-alpha.26",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts"

init/src/init.ts

+2-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as colors from "@std/fmt/colors";
22
import * as path from "@std/path";
33

44
// Keep these as is, as we replace these version in our release script
5-
const FRESH_VERSION = "2.0.0-alpha.25";
5+
const FRESH_VERSION = "2.0.0-alpha.26";
66
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7";
77
const PREACT_VERSION = "10.24.3";
88
const PREACT_SIGNALS_VERSION = "1.3.0";
@@ -589,8 +589,7 @@ if (Deno.args.includes("build")) {
589589
};
590590

591591
if (useTailwind) {
592-
denoJson.imports["tailwindcss"] = "npm:[email protected]";
593-
denoJson.imports["tailwindcss/plugin"] = "npm:[email protected]/plugin.js";
592+
denoJson.imports["tailwindcss"] = "npm:tailwindcss@^3.4.3";
594593
}
595594

596595
await writeFile("deno.json", denoJson);

update/deno.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@fresh/update",
3-
"version": "2.0.0-alpha.25",
3+
"version": "2.0.0-alpha.26",
44
"license": "MIT",
55
"exports": {
66
".": "./src/mod.ts"

update/src/update.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import * as tsmorph from "ts-morph";
44

55
export const SyntaxKind = tsmorph.ts.SyntaxKind;
66

7-
export const FRESH_VERSION = "2.0.0-alpha.25";
8-
export const PREACT_VERSION = "10.24.3";
9-
export const PREACT_SIGNALS_VERSION = "1.3.0";
7+
export const FRESH_VERSION = "2.0.0-alpha.26";
8+
export const PREACT_VERSION = "10.25.1";
9+
export const PREACT_SIGNALS_VERSION = "1.3.1";
1010

1111
export interface DenoJson {
1212
name?: string;

www/deno.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
"preact": "npm:preact@^10.24.1",
3737
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11",
3838
"prismjs": "npm:prismjs@^1.29.0",
39-
"tailwindcss": "npm:tailwindcss@^3.4.1",
40-
"tailwindcss/plugin": "npm:/tailwindcss@^3.4.1/plugin.js"
39+
"tailwindcss": "npm:tailwindcss@^3.4.1"
4140
}
4241
}

www/tailwind.config.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import type { Config } from "tailwindcss";
2-
import plugin from "tailwindcss/plugin";
2+
import plugin from "tailwindcss/plugin.js";
33

44
export default {
55
content: [

0 commit comments

Comments
 (0)