Skip to content

Commit

Permalink
upgrade deps
Browse files Browse the repository at this point in the history
  • Loading branch information
wkelly17 committed Jun 12, 2024
1 parent befe4ed commit 66d2fcc
Show file tree
Hide file tree
Showing 12 changed files with 6,221 additions and 283 deletions.
7 changes: 5 additions & 2 deletions astro.config.mjs → astro.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,23 @@ import {defineConfig} from "astro/config";
import cloudflare from "@astrojs/cloudflare";
import solidJs from "@astrojs/solid-js";
import UnoCSS from "unocss/astro";
import presetUno from "@unocss/preset-uno";
import transformerVariantGroup from "@unocss/transformer-variant-group";
import {presetUno} from "unocss";

// https://astro.build/config
export default defineConfig({
output: "server",
adapter: cloudflare({
mode: "directory",
platformProxy: {
enabled: false,
},
}),
integrations: [
solidJs(),
UnoCSS({
presets: [presetUno()],
transformers: [transformerVariantGroup()],
injectReset: true,
}),
],
});
151 changes: 0 additions & 151 deletions functions/[[path]].js

This file was deleted.

32 changes: 0 additions & 32 deletions functions/api/getRemoteBranches.ts

This file was deleted.

32 changes: 0 additions & 32 deletions functions/api/getRemoteZip.ts

This file was deleted.

37 changes: 21 additions & 16 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,31 +3,36 @@
"type": "module",
"version": "0.0.1",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "astro dev",
"cf-dev": "wrangler pages dev --proxy=3000 -- npm run dev",
"cf-preview": "npm run build && wrangler pages dev ./dist",
"cf-dev": "wrangler pages dev --proxy=3000 -- pnpm run dev",
"cf-preview": "pnpm run build && wrangler pages dev ./dist",
"start": "astro dev",
"build": "astro build ",
"build-cf": "astro build ",
"preview": "astro preview",
"astro": "astro"
"astro": "astro",
"check": "astro check"
},
"dependencies": {
"@astrojs/cloudflare": "^6.2.2",
"@astrojs/solid-js": "^2.1.0",
"astro": "^2.1.9",
"solid-js": "^1.7.0",
"@tanstack/solid-table": "^8.8.4",
"fflate": "^0.7.4",
"remark-html": "^15.0.2",
"remark-parse": "^10.0.1",
"unified": "^10.1.2"
"@astrojs/cloudflare": "^10.4.0",
"@astrojs/solid-js": "^4.3.0",
"@tanstack/solid-table": "^8.17.3",
"astro": "^4.10.2",
"fflate": "^0.8.2",
"remark-html": "^16.0.1",
"remark-parse": "^11.0.0",
"solid-js": "^1.8.17",
"typescript": "^5.4.5",
"unified": "^11.0.4"
},
"devDependencies": {
"wrangler": "^2.13.0",
"@cloudflare/workers-types": "^4.20230221.0",
"unocss": "^0.49.5",
"@unocss/transformer-variant-group": "^0.49.7"
"@astrojs/check": "^0.7.0",
"@cloudflare/workers-types": "^4.20240605.0",
"@unocss/reset": "^0.61.0",
"@unocss/transformer-variant-group": "^0.61.0",
"unocss": "^0.61.0",
"wrangler": "^3.60.2"
}
}
Loading

0 comments on commit 66d2fcc

Please sign in to comment.