File tree Expand file tree Collapse file tree 8 files changed +11
-11
lines changed
docs/latest/getting-started Expand file tree Collapse file tree 8 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 14
14
strategy:
15
15
fail-fast: false
16
16
matrix:
17
- deno: ["canary ", "rc "]
17
+ deno: ["v2.x ", "canary "]
18
18
os: [macOS-latest, windows-latest, ubuntu-latest]
19
19
include:
20
20
- os: ubuntu-latest
@@ -34,15 +34,15 @@ jobs:
34
34
deno-version: ${{ matrix.deno }}
35
35
36
36
- name: Verify formatting
37
- if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1 .x'
37
+ if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2 .x'
38
38
run: deno fmt --check
39
39
40
40
- name: Run linter
41
- if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1 .x'
41
+ if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2 .x'
42
42
run: deno lint
43
43
44
44
- name: Spell-check
45
- if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1 .x'
45
+ if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v2 .x'
46
46
uses: crate-ci/typos@master
47
47
48
48
- name: Type check project
Original file line number Diff line number Diff line change 1
1
{
2
2
"name": "@fresh/core",
3
- "version": "2.0.0-alpha.24 ",
3
+ "version": "2.0.0-alpha.25 ",
4
4
"license": "MIT",
5
5
"exports": {
6
6
".": "./src/mod.ts",
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ The new page will be visible at `http://localhost:8000/about`.
52
52
pages in the _Getting Started_ guide will also explain more features of routes. -->
53
53
54
54
[concepts-routing]: /docs/concepts/routing
55
- [jsx]:https://react.dev/learn/writing-markup-with-jsx
55
+ [jsx]: https://react.dev/learn/writing-markup-with-jsx
56
56
[preact]: https://preactjs.com/
57
57
58
58
<!-- [concepts-routes]: /docs/concepts/routes -->
Original file line number Diff line number Diff line change 10
10
"imports": {
11
11
"@preact/signals": "npm:@preact/signals@^1.2.3",
12
12
"preact": "npm:preact@^10.24.1",
13
- "fresh": "jsr:@fresh/core@^2.0.0-alpha.18 "
13
+ "fresh": "jsr:@fresh/core@^2.0.0-alpha.25 "
14
14
},
15
15
"compilerOptions": {
16
16
"jsx": "react-jsx",
Original file line number Diff line number Diff line change 1
1
{
2
2
"name": "@fresh/init",
3
- "version": "2.0.0-alpha.24 ",
3
+ "version": "2.0.0-alpha.25 ",
4
4
"license": "MIT",
5
5
"exports": {
6
6
".": "./src/mod.ts"
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import * as colors from "@std/fmt/colors";
2
2
import * as path from "@std/path";
3
3
4
4
// Keep these as is, as we replace these version in our release script
5
- const FRESH_VERSION = "2.0.0-alpha.24 ";
5
+ const FRESH_VERSION = "2.0.0-alpha.25 ";
6
6
const FRESH_TAILWIND_VERSION = "0.0.1-alpha.7";
7
7
const PREACT_VERSION = "10.24.3";
8
8
const PREACT_SIGNALS_VERSION = "1.3.0";
Original file line number Diff line number Diff line change 1
1
{
2
2
"name": "@fresh/update",
3
- "version": "2.0.0-alpha.24 ",
3
+ "version": "2.0.0-alpha.25 ",
4
4
"license": "MIT",
5
5
"exports": {
6
6
".": "./src/mod.ts"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import * as tsmorph from "ts-morph";
4
4
5
5
export const SyntaxKind = tsmorph.ts.SyntaxKind;
6
6
7
- export const FRESH_VERSION = "2.0.0-alpha.24 ";
7
+ export const FRESH_VERSION = "2.0.0-alpha.25 ";
8
8
export const PREACT_VERSION = "10.24.3";
9
9
export const PREACT_SIGNALS_VERSION = "1.3.0";
10
10
You can’t perform that action at this time.
0 commit comments