Skip to content

Commit d0f96f4

Browse files
authored
Merge branch 'main' into fix/parse-objetc-with-negative
2 parents 3da5472 + 22af152 commit d0f96f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+3702
-3423
lines changed

.github/dependabot.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
version: 2
22
updates:
3-
43
- package-ecosystem: "github-actions"
54
directory: "/"
65
schedule:
76
# Check for updates to GitHub Actions every week
8-
interval: "weekly"
7+
interval: "weekly"

.github/workflows/ci.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
deno: ["canary", "v1.x"]
17+
deno: ["canary", "rc"]
1818
os: [macOS-latest, windows-latest, ubuntu-latest]
1919
include:
20-
- os: ubuntu-latest
21-
cache_path: ~/.cache/deno/
22-
- os: macos-latest
23-
cache_path: ~/Library/Caches/deno/
24-
- os: windows-latest
25-
cache_path: ~\AppData\Local\deno\
20+
- os: ubuntu-latest
21+
cache_path: ~/.cache/deno/
22+
- os: macos-latest
23+
cache_path: ~/Library/Caches/deno/
24+
- os: windows-latest
25+
cache_path: ~\AppData\Local\deno\
2626

2727
steps:
2828
- name: Checkout repo
@@ -44,7 +44,7 @@ jobs:
4444
- name: Spell-check
4545
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1.x'
4646
uses: crate-ci/typos@master
47-
47+
4848
- name: Type check project
4949
run: deno task check:types
5050

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Deno
2222
uses: denoland/setup-deno@v1
2323
with:
24-
deno-version: v1.x
24+
deno-version: rc
2525

2626
- name: Build step
2727
working-directory: ./www

.github/workflows/lighthouse.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
- name: Install Deno
1919
uses: denoland/setup-deno@v1
2020
with:
21-
deno-version: v1.x
22-
21+
deno-version: rc
22+
2323
- name: Publish Fresh
2424
run: deno publish
2525

deno.json

Lines changed: 28 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "@fresh/core",
3-
"version": "2.0.0-alpha.20",
3+
"version": "2.0.0-alpha.23",
4+
"license": "MIT",
45
"exports": {
56
".": "./src/mod.ts",
67
"./runtime": "./src/runtime/shared.ts",
@@ -33,44 +34,45 @@
3334
},
3435
"imports": {
3536
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts",
36-
"$marked-mangle": "https://esm.sh/marked-mangle@1.0.1",
37-
"@astral/astral": "jsr:@astral/astral@^0.4.0",
37+
"@astral/astral": "jsr:@astral/astral@^0.4.6",
3838
"@fresh/plugin-tailwind": "./plugin-tailwindcss/src/mod.ts",
39-
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
39+
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.0",
4040
"@marvinh-test/fresh-island": "jsr:@marvinh-test/fresh-island@^0.0.1",
4141
"@preact/signals": "npm:@preact/signals@^1.2.3",
42-
"@std/async": "jsr:@std/async@^0.224.1",
43-
"@std/cli": "jsr:@std/cli@^0.224.5",
44-
"@std/crypto": "jsr:@std/crypto@1.0.0-rc.1",
45-
"@std/datetime": "jsr:@std/datetime@^0.224.0",
46-
"@std/encoding": "jsr:@std/encoding@^1.0.0-rc.1",
47-
"@std/expect": "jsr:@std/expect@^0.224.4",
48-
"@std/fmt": "jsr:@std/fmt@^0.225.3",
49-
"@std/front-matter": "jsr:@std/front-matter@^0.224.2",
50-
"@std/fs": "jsr:@std/fs@^0.229.1",
51-
"@std/html": "jsr:@std/html@^0.224.2",
52-
"@std/jsonc": "jsr:@std/jsonc@^0.224.1",
53-
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
54-
"@std/path": "jsr:@std/path@^0.225.2",
55-
"@std/semver": "jsr:@std/semver@^0.224.3",
56-
"@std/streams": "jsr:@std/streams@^0.224.3",
42+
"@std/async": "jsr:@std/async@1",
43+
"@std/cli": "jsr:@std/cli@1",
44+
"@std/crypto": "jsr:@std/crypto@1",
45+
"@std/datetime": "jsr:@std/datetime@^0.225.2",
46+
"@std/encoding": "jsr:@std/encoding@1",
47+
"@std/expect": "jsr:@std/expect@1",
48+
"@std/fmt": "jsr:@std/fmt@1",
49+
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
50+
"@std/fs": "jsr:@std/fs@1",
51+
"@std/html": "jsr:@std/html@1",
52+
"@std/jsonc": "jsr:@std/jsonc@1",
53+
"@std/media-types": "jsr:@std/media-types@1",
54+
"@std/path": "jsr:@std/path@1",
55+
"@std/semver": "jsr:@std/semver@1",
56+
"@std/streams": "jsr:@std/streams@1",
5757
"autoprefixer": "npm:autoprefixer@10.4.17",
5858
"cssnano": "npm:cssnano@6.0.3",
59-
"esbuild": "npm:esbuild@0.20.2",
60-
"esbuild-wasm": "npm:esbuild-wasm@0.20.2",
59+
"esbuild": "npm:esbuild@0.23.1",
60+
"esbuild-wasm": "npm:esbuild-wasm@0.23.1",
6161
"fresh": "./src/mod.ts",
6262
"fresh/compat": "./src/compat/mod.ts",
6363
"fresh/dev": "./src/dev/mod.ts",
6464
"fresh/runtime": "./src/runtime/shared.ts",
65+
"github-slugger": "npm:github-slugger@^2.0.0",
6566
"linkedom": "npm:linkedom@^0.16.11",
67+
"marked": "npm:marked@^14.1.2",
68+
"marked-mangle": "npm:marked-mangle@^1.1.9",
6669
"postcss": "npm:postcss@8.4.35",
67-
"preact": "npm:preact@^10.22.0",
68-
"preact-render-to-string": "npm:preact-render-to-string@^6.4.2",
70+
"preact": "npm:preact@^10.24.1",
71+
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11",
72+
"prismjs": "npm:prismjs@^1.29.0",
6973
"tailwindcss": "npm:tailwindcss@^3.4.1",
7074
"tailwindcss/plugin": "npm:/tailwindcss@^3.4.1/plugin.js",
71-
"ts-morph": "npm:ts-morph@^22.0.0",
72-
"twind": "https://esm.sh/twind@0.16.19",
73-
"twind/": "https://esm.sh/twind@0.16.19/"
75+
"ts-morph": "npm:ts-morph@^22.0.0"
7476
},
7577
"compilerOptions": {
7678
"lib": ["dom", "dom.asynciterable", "deno.ns"],

0 commit comments

Comments
 (0)