-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(deps): migrate to pnpm, refresh dependencies
- Loading branch information
Showing
46 changed files
with
12,705 additions
and
25,139 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 +1,2 @@ | ||
save-exact=true | ||
shell-emulator=true | ||
shamefully-hoist=true |
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,6 +1,6 @@ | ||
MIT License | ||
|
||
Copyright (c) 2021-present, Lucie Haberer <[email protected]> (https://lihbr.com) | ||
Copyright (c) 2021-PRESENT, Lucie Haberer <[email protected]> (https://lihbr.com) | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
|
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,2 +1,2 @@ | ||
#!/usr/bin/env node | ||
import('../dist/cli.js') | ||
import("../dist/cli.js") |
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,12 +1,12 @@ | ||
<template> | ||
<div | ||
class="p-3 text-center border-t border-gray-200 border-dashed dark:border-gray-800 dark:bg-gray-900" | ||
> | ||
<a | ||
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" | ||
class="text-xs text-gray-400 hover:text-gray-600 dark:text-gray-600 group dark:hover:text-gray-400" | ||
> | ||
Powered by <strong class="font-bold">SWAGUS</strong> | ||
</a> | ||
</div> | ||
<div | ||
class="p-3 text-center border-t border-gray-200 border-dashed dark:border-gray-800 dark:bg-gray-900" | ||
> | ||
<a | ||
href="https://www.youtube.com/watch?v=dQw4w9WgXcQ" | ||
class="text-xs text-gray-400 hover:text-gray-600 dark:text-gray-600 group dark:hover:text-gray-400" | ||
> | ||
Powered by <strong class="font-bold">SWAGUS</strong> | ||
</a> | ||
</div> | ||
</template> |
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,32 +1,32 @@ | ||
<template> | ||
<figure class="min-h-screen"> | ||
<img | ||
v-if="!clicked" | ||
src="~/assets/img/recaptcha-light.jpg" | ||
alt="ReCaptcha" | ||
class="light-img cursor-pointer" | ||
@click="clicked = true" | ||
/> | ||
<img | ||
v-if="!clicked" | ||
src="~/assets/img/recaptcha-dark.jpg" | ||
alt="ReCaptcha" | ||
class="dark-img cursor-pointer" | ||
@click="clicked = true" | ||
/> | ||
<p v-if="clicked" class="text-gray-900 dark:text-gray-100"> | ||
Yeah, that was just an image. At least if you feel stupid now you're most | ||
likely not a robot~ | ||
</p> | ||
</figure> | ||
</template> | ||
|
||
<script> | ||
export default { | ||
data() { | ||
return { | ||
clicked: false | ||
}; | ||
} | ||
}; | ||
data() { | ||
return { | ||
clicked: false, | ||
} | ||
}, | ||
} | ||
</script> | ||
|
||
<template> | ||
<figure class="min-h-screen"> | ||
<img | ||
v-if="!clicked" | ||
src="~/assets/img/recaptcha-light.jpg" | ||
alt="ReCaptcha" | ||
class="light-img cursor-pointer" | ||
@click="clicked = true" | ||
> | ||
<img | ||
v-if="!clicked" | ||
src="~/assets/img/recaptcha-dark.jpg" | ||
alt="ReCaptcha" | ||
class="dark-img cursor-pointer" | ||
@click="clicked = true" | ||
> | ||
<p v-if="clicked" class="text-gray-900 dark:text-gray-100"> | ||
Yeah, that was just an image. At least if you feel stupid now you're most | ||
likely not a robot~ | ||
</p> | ||
</figure> | ||
</template> |
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
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,25 +1,25 @@ | ||
{ | ||
"title": "Nuxt Hue", | ||
"description": "Enlighten your Nuxt experience", | ||
"url": "https://nuxt-hue.lihbr.com", | ||
"layout": "docs", | ||
"logo": { | ||
"light": "/logo-light.svg", | ||
"dark": "/logo-dark.svg" | ||
}, | ||
"header": { | ||
"logo": true, | ||
"title": false | ||
}, | ||
"twitter": "@li_hbr", | ||
"github": { | ||
"repo": "lihbr/nuxt-hue", | ||
"branch": "master", | ||
"dir": "docs", | ||
"releases": true | ||
}, | ||
"colors": { | ||
"primary": "#cf7a13" | ||
}, | ||
"credits": true | ||
"title": "Nuxt Hue", | ||
"description": "Enlighten your Nuxt experience", | ||
"url": "https://nuxt-hue.lihbr.com", | ||
"layout": "docs", | ||
"logo": { | ||
"light": "/logo-light.svg", | ||
"dark": "/logo-dark.svg" | ||
}, | ||
"header": { | ||
"logo": true, | ||
"title": false | ||
}, | ||
"twitter": "@li_hbr", | ||
"github": { | ||
"repo": "lihbr/nuxt-hue", | ||
"branch": "master", | ||
"dir": "docs", | ||
"releases": true | ||
}, | ||
"colors": { | ||
"primary": "#cf7a13" | ||
}, | ||
"credits": true | ||
} |
Oops, something went wrong.