Compare commits
No commits in common. "main" and "v0.7.3" have entirely different histories.
6 changed files with 5 additions and 24 deletions
11
.build.yml
11
.build.yml
|
@ -1,11 +0,0 @@
|
||||||
image: alpine/edge
|
|
||||||
secrets:
|
|
||||||
- bbfcb6dc-7c4a-42ee-a11a-022f0339a133
|
|
||||||
environment:
|
|
||||||
REPO: astro-github-stats
|
|
||||||
GH_USER: ayoayco
|
|
||||||
tasks:
|
|
||||||
- push-mirror: |
|
|
||||||
cd ~/"${REPO}"
|
|
||||||
git config --global credential.helper store
|
|
||||||
git push --mirror "https://github.com/${GH_USER}/${REPO}"
|
|
|
@ -1,6 +1,3 @@
|
||||||
> [!Note]
|
|
||||||
> Project moved to [SourceHut](https://git.sr.ht/~ayoayco/astro-github-stats)
|
|
||||||
|
|
||||||
# Astro GitHub Stats ✨
|
# Astro GitHub Stats ✨
|
||||||
|
|
||||||
[](https://www.npmjs.com/package/astro-github-stats)
|
[](https://www.npmjs.com/package/astro-github-stats)
|
||||||
|
|
|
@ -1,8 +1,4 @@
|
||||||
import { defineConfig } from 'astro/config'
|
import { defineConfig } from 'astro/config'
|
||||||
|
|
||||||
// https://astro.build/config
|
// https://astro.build/config
|
||||||
export default defineConfig({
|
export default defineConfig({})
|
||||||
image: {
|
|
||||||
// domains: ['github-readme-stats.vercel.app'],
|
|
||||||
},
|
|
||||||
})
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
"description": "Embed GitHub stats in your Astro page ✨",
|
"description": "Embed GitHub stats in your Astro page ✨",
|
||||||
"repository": "https://github.com/ayoayco/astro-github-stats",
|
"repository": "https://github.com/ayoayco/astro-github-stats",
|
||||||
"homepage": "https://ayco.io/showcase/astro-github-stats",
|
"homepage": "https://ayco.io/showcase/astro-github-stats",
|
||||||
"version": "0.8.0",
|
"version": "0.7.3",
|
||||||
"author": {
|
"author": {
|
||||||
"name": "Ayo Ayco",
|
"name": "Ayo Ayco",
|
||||||
"email": "ayo@ayco.io",
|
"email": "ayo@ayco.io",
|
||||||
|
@ -51,7 +51,7 @@
|
||||||
"typescript-eslint": "^8.18.2"
|
"typescript-eslint": "^8.18.2"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"astro": ">=5.0.0"
|
"astro": "^5"
|
||||||
},
|
},
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"workspaces": [
|
"workspaces": [
|
||||||
|
|
|
@ -9,7 +9,7 @@ importers:
|
||||||
.:
|
.:
|
||||||
dependencies:
|
dependencies:
|
||||||
astro:
|
astro:
|
||||||
specifier: '>=5.0.0'
|
specifier: ^5
|
||||||
version: 5.1.1(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.29.1)(typescript@5.7.2)
|
version: 5.1.1(@types/node@22.10.2)(jiti@2.4.2)(rollup@4.29.1)(typescript@5.7.2)
|
||||||
devDependencies:
|
devDependencies:
|
||||||
'@eslint/js':
|
'@eslint/js':
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
---
|
---
|
||||||
import {Image} from 'astro:assets'
|
|
||||||
export interface Props {
|
export interface Props {
|
||||||
username: string
|
username: string
|
||||||
topLanguages?: boolean
|
topLanguages?: boolean
|
||||||
|
@ -26,4 +25,4 @@ if (topLanguages) {
|
||||||
alt = altText || alt
|
alt = altText || alt
|
||||||
---
|
---
|
||||||
|
|
||||||
<Image inferSize={true} src={url} alt={alt} />
|
<img src={url} alt={alt} />
|
||||||
|
|
Loading…
Reference in a new issue