Skip to content

Commit

Permalink
Merge branch 'main' into fix/parse-objetc-with-negative
Browse files Browse the repository at this point in the history
  • Loading branch information
DevJoaoLopes authored Oct 27, 2024
2 parents 3da5472 + 22af152 commit d0f96f4
Show file tree
Hide file tree
Showing 55 changed files with 3,702 additions and 3,423 deletions.
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
version: 2
updates:

- package-ecosystem: "github-actions"
directory: "/"
schedule:
# Check for updates to GitHub Actions every week
interval: "weekly"
interval: "weekly"
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ jobs:
strategy:
fail-fast: false
matrix:
deno: ["canary", "v1.x"]
deno: ["canary", "rc"]
os: [macOS-latest, windows-latest, ubuntu-latest]
include:
- os: ubuntu-latest
cache_path: ~/.cache/deno/
- os: macos-latest
cache_path: ~/Library/Caches/deno/
- os: windows-latest
cache_path: ~\AppData\Local\deno\
- os: ubuntu-latest
cache_path: ~/.cache/deno/
- os: macos-latest
cache_path: ~/Library/Caches/deno/
- os: windows-latest
cache_path: ~\AppData\Local\deno\

steps:
- name: Checkout repo
Expand All @@ -44,7 +44,7 @@ jobs:
- name: Spell-check
if: startsWith(matrix.os, 'ubuntu') && matrix.deno == 'v1.x'
uses: crate-ci/typos@master

- name: Type check project
run: deno task check:types

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
deno-version: rc

- name: Build step
working-directory: ./www
Expand Down
27 changes: 0 additions & 27 deletions .github/workflows/lighthouse.yml

This file was deleted.

4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ jobs:
- name: Install Deno
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
deno-version: rc

- name: Publish Fresh
run: deno publish

Expand Down
54 changes: 28 additions & 26 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"name": "@fresh/core",
"version": "2.0.0-alpha.20",
"version": "2.0.0-alpha.23",
"license": "MIT",
"exports": {
".": "./src/mod.ts",
"./runtime": "./src/runtime/shared.ts",
Expand Down Expand Up @@ -33,44 +34,45 @@
},
"imports": {
"$ga4": "https://raw.githubusercontent.com/denoland/ga4/main/mod.ts",
"$marked-mangle": "https://esm.sh/marked-mangle@1.0.1",
"@astral/astral": "jsr:@astral/astral@^0.4.0",
"@astral/astral": "jsr:@astral/astral@^0.4.6",
"@fresh/plugin-tailwind": "./plugin-tailwindcss/src/mod.ts",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.10.3",
"@luca/esbuild-deno-loader": "jsr:@luca/esbuild-deno-loader@^0.11.0",
"@marvinh-test/fresh-island": "jsr:@marvinh-test/fresh-island@^0.0.1",
"@preact/signals": "npm:@preact/signals@^1.2.3",
"@std/async": "jsr:@std/async@^0.224.1",
"@std/cli": "jsr:@std/cli@^0.224.5",
"@std/crypto": "jsr:@std/crypto@1.0.0-rc.1",
"@std/datetime": "jsr:@std/datetime@^0.224.0",
"@std/encoding": "jsr:@std/encoding@^1.0.0-rc.1",
"@std/expect": "jsr:@std/expect@^0.224.4",
"@std/fmt": "jsr:@std/fmt@^0.225.3",
"@std/front-matter": "jsr:@std/front-matter@^0.224.2",
"@std/fs": "jsr:@std/fs@^0.229.1",
"@std/html": "jsr:@std/html@^0.224.2",
"@std/jsonc": "jsr:@std/jsonc@^0.224.1",
"@std/media-types": "jsr:@std/media-types@^1.0.0-rc.1",
"@std/path": "jsr:@std/path@^0.225.2",
"@std/semver": "jsr:@std/semver@^0.224.3",
"@std/streams": "jsr:@std/streams@^0.224.3",
"@std/async": "jsr:@std/async@1",
"@std/cli": "jsr:@std/cli@1",
"@std/crypto": "jsr:@std/crypto@1",
"@std/datetime": "jsr:@std/datetime@^0.225.2",
"@std/encoding": "jsr:@std/encoding@1",
"@std/expect": "jsr:@std/expect@1",
"@std/fmt": "jsr:@std/fmt@1",
"@std/front-matter": "jsr:@std/front-matter@^1.0.5",
"@std/fs": "jsr:@std/fs@1",
"@std/html": "jsr:@std/html@1",
"@std/jsonc": "jsr:@std/jsonc@1",
"@std/media-types": "jsr:@std/media-types@1",
"@std/path": "jsr:@std/path@1",
"@std/semver": "jsr:@std/semver@1",
"@std/streams": "jsr:@std/streams@1",
"autoprefixer": "npm:autoprefixer@10.4.17",
"cssnano": "npm:cssnano@6.0.3",
"esbuild": "npm:esbuild@0.20.2",
"esbuild-wasm": "npm:esbuild-wasm@0.20.2",
"esbuild": "npm:esbuild@0.23.1",
"esbuild-wasm": "npm:esbuild-wasm@0.23.1",
"fresh": "./src/mod.ts",
"fresh/compat": "./src/compat/mod.ts",
"fresh/dev": "./src/dev/mod.ts",
"fresh/runtime": "./src/runtime/shared.ts",
"github-slugger": "npm:github-slugger@^2.0.0",
"linkedom": "npm:linkedom@^0.16.11",
"marked": "npm:marked@^14.1.2",
"marked-mangle": "npm:marked-mangle@^1.1.9",
"postcss": "npm:postcss@8.4.35",
"preact": "npm:preact@^10.22.0",
"preact-render-to-string": "npm:preact-render-to-string@^6.4.2",
"preact": "npm:preact@^10.24.1",
"preact-render-to-string": "npm:preact-render-to-string@^6.5.11",
"prismjs": "npm:prismjs@^1.29.0",
"tailwindcss": "npm:tailwindcss@^3.4.1",
"tailwindcss/plugin": "npm:/tailwindcss@^3.4.1/plugin.js",
"ts-morph": "npm:ts-morph@^22.0.0",
"twind": "https://esm.sh/twind@0.16.19",
"twind/": "https://esm.sh/twind@0.16.19/"
"ts-morph": "npm:ts-morph@^22.0.0"
},
"compilerOptions": {
"lib": ["dom", "dom.asynciterable", "deno.ns"],
Expand Down
Loading

0 comments on commit d0f96f4

Please sign in to comment.