-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated kvinsights Updated navigation Updated update mechanism
- Loading branch information
1 parent
ee60c98
commit 484acec
Showing
29 changed files
with
555 additions
and
653 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
"authorLink": "https://about.google", | ||
"accentColor": "#ec4434", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,4 +17,4 @@ | |
"authorLink": "https://okikio.dev/", | ||
"accentColor": "#3c84f4", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
"authorLink": "https://spotify.com", | ||
"accentColor": "#1cd363", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,4 +12,4 @@ | |
"author": "YouTube", | ||
"accentColor": "#fc0404", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
"author": "YouTube", | ||
"accentColor": "#fc0404", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ | |
"authorLink": "https://jull.dev", | ||
"accentColor": "#7f7f7f", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
"authorLink": "https://microsoft.com/", | ||
"accentColor": "#0eb49c", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ | |
"authorLink": "https://microsoft.com/", | ||
"accentColor": "#24adf4", | ||
"version": 2 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/*"] | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.