Skip to content

Commit

Permalink
Updated fresh
Browse files Browse the repository at this point in the history
Updated kvinsights
Updated navigation
Updated update mechanism
  • Loading branch information
notangelmario committed Nov 19, 2023
1 parent ee60c98 commit 484acec
Show file tree
Hide file tree
Showing 29 changed files with 555 additions and 653 deletions.
2 changes: 1 addition & 1 deletion apps/chrome.apps.canvas.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
"authorLink": "https://about.google",
"accentColor": "#ec4434",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/com.bundlejs.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@
"authorLink": "https://okikio.dev/",
"accentColor": "#3c84f4",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/com.spotify.open.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"authorLink": "https://spotify.com",
"accentColor": "#1cd363",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/com.youtube.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
"author": "YouTube",
"accentColor": "#fc0404",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/com.youtube.music.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@
"author": "YouTube",
"accentColor": "#fc0404",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/dev.jull.sudoku.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@
"authorLink": "https://jull.dev",
"accentColor": "#7f7f7f",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/dev.vscode.insiders.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"authorLink": "https://microsoft.com/",
"accentColor": "#0eb49c",
"version": 2
}
}
2 changes: 1 addition & 1 deletion apps/dev.vscode.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
"authorLink": "https://microsoft.com/",
"accentColor": "#24adf4",
"version": 2
}
}
134 changes: 60 additions & 74 deletions deno.json
Original file line number Diff line number Diff line change
@@ -1,76 +1,62 @@
{
"compilerOptions": {
"allowJs": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"tasks": {
"dev": "deno run --unstable -A --watch=src/static/,src/routes/ src/dev.ts",
"cache": "deno cache --reload src/main.ts",
"check": "deno lint && deno fmt && deno check src/main.ts",
"update:apps": "deno run -A scripts/update.ts",
"build": "deno run --unstable -A src/dev.ts build",
"preview": "deno run --unstable -A src/main.ts"
},
"lock": false,
"lint": {
"exclude": [
"static",
"docs",
"resources",
"_fresh"
],
"rules": {
"tags": [
"recommended",
"fresh"
],
"include": [
"ban-untagged-todo"
]
}
},
"fmt": {
"exclude": [
"static",
"docs",
"resources",
"_fresh"
],
"useTabs": true,
"indentWidth": 4,
"singleQuote": false,
"semiColons": true,
"proseWrap": "preserve"
},
"imports": {
"@/": "./src/",
"$std/": "https://deno.land/[email protected]/",
"dotenv": "https://deno.land/[email protected]/dotenv/load.ts",
"$fresh/": "https://deno.land/x/[email protected]/",
"fresh-seo": "https://deno.land/x/[email protected]/mod.ts",
"gfm": "https://deno.land/x/[email protected]/mod.ts",
"tabler-icons/": "https://deno.land/x/[email protected]/tsx/",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"supabase": "https://esm.sh/@supabase/[email protected]",
"supabase-client": "https://esm.sh/@supabase/[email protected]?target=esnext",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"@twind/core": "https://esm.sh/@twind/[email protected]",
"preset-tailwind": "https://esm.sh/@twind/[email protected]",
"preset-autoprefix": "https://esm.sh/@twind/[email protected]",
"preset-line-clamp": "https://esm.sh/@twind/[email protected]",
"ua-parser-js": "https://esm.sh/[email protected]",
"imagescript": "https://esm.sh/[email protected]",
"deno-kv-insights": "https://deno.land/x/[email protected]/mod.ts",
"deno-kv-oauth": "https://deno.land/x/[email protected]/mod.ts"
},
"scopes": {}
"compilerOptions": {
"allowJs": false,
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"jsx": "react-jsx",
"jsxImportSource": "preact"
},
"tasks": {
"dev": "deno run --unstable -A --watch=src/static/,src/routes/ src/dev.ts",
"cache": "deno cache --reload src/main.ts",
"check": "deno lint && deno fmt && deno check src/main.ts",
"update:apps": "deno run --unstable -A scripts/update.ts",
"build": "deno run --unstable -A src/dev.ts build",
"preview": "deno run --unstable -A src/main.ts"
},
"lock": false,
"lint": {
"exclude": ["static", "docs", "resources"],
"rules": {
"tags": ["recommended", "fresh"],
"include": ["ban-untagged-todo"]
}
},
"fmt": {
"exclude": ["static", "docs", "resources"],
"useTabs": true,
"indentWidth": 4,
"singleQuote": false,
"semiColons": true,
"proseWrap": "preserve"
},
"imports": {
"@/": "./src/",
"$std/": "https://deno.land/[email protected]/",
"dotenv": "https://deno.land/[email protected]/dotenv/load.ts",
"$fresh/": "https://deno.land/x/[email protected]/",
"fresh-seo": "https://deno.land/x/[email protected]/mod.ts",
"gfm": "https://deno.land/x/[email protected]/mod.ts",
"tabler-icons/": "https://deno.land/x/[email protected]/tsx/",
"@preact/signals-core": "https://esm.sh/*@preact/[email protected]",
"@preact/signals": "https://esm.sh/*@preact/[email protected]",
"supabase": "https://esm.sh/@supabase/[email protected]",
"supabase-client": "https://esm.sh/@supabase/[email protected]?target=esnext",
"preact-render-to-string": "https://esm.sh/*[email protected]",
"preact/": "https://esm.sh/[email protected]/",
"preact": "https://esm.sh/[email protected]",
"@twind/core": "https://esm.sh/@twind/[email protected]",
"preset-tailwind": "https://esm.sh/@twind/[email protected]",
"preset-autoprefix": "https://esm.sh/@twind/[email protected]",
"preset-line-clamp": "https://esm.sh/@twind/[email protected]",
"ua-parser-js": "https://esm.sh/[email protected]",
"imagescript": "https://esm.sh/[email protected]",
"deno-kv-insights": "https://deno.land/x/[email protected]/mod.ts",
"deno-kv-oauth": "https://deno.land/x/[email protected]/mod.ts"
},
"scopes": {},
"exclude": ["**/_fresh/*"]
}
23 changes: 0 additions & 23 deletions docs/api.md

This file was deleted.

Loading

0 comments on commit 484acec

Please sign in to comment.