Skip to content
This repository has been archived by the owner on Jun 23, 2024. It is now read-only.

Commit

Permalink
Merge branch 'vue'
Browse files Browse the repository at this point in the history
  • Loading branch information
screendriver committed Jun 14, 2024
2 parents c8cdfb1 + 4878cb7 commit bf42d17
Show file tree
Hide file tree
Showing 6 changed files with 124 additions and 5 deletions.
2 changes: 1 addition & 1 deletion justfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ lint:
npx jscpd source

@compile:
npx tsc
npx vue-tsc --noEmit

@develop $FORCE_COLOR="1":
npx tsx ./source/start-develop.ts
Expand Down
119 changes: 119 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
"tailwindcss": "3.4.4",
"tsx": "4.15.4",
"typescript": "5.4.5",
"vue-tsc": "2.0.21",
"wait-on": "7.2.0",
"zx": "8.1.2"
},
Expand Down
2 changes: 1 addition & 1 deletion source/statistics/GitHubRepositories.vue
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const { isFetching, gitHubStatistics } = defineProps<Properties>();
<template>
<Figure description="GitHub Repos">
<LoadingSpinner v-if="isFetching" />
<Cite v-if="!isFetching" aria-label="GitHub Repos">
<Cite v-if="!isFetching" ariaLabel="GitHub Repos">
{{ gitHubStatistics.get("user").get("repositories").get("totalCount").unwrapOr(0) }}
</Cite>
</Figure>
Expand Down
2 changes: 1 addition & 1 deletion source/statistics/YearsInBusiness.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ const { yearsOfExperience } = defineProps<Properties>();

<template>
<Figure description="Experience">
<Cite aria-label="Years of experience">{{ yearsOfExperience }} yrs</Cite>
<Cite ariaLabel="Years of experience">{{ yearsOfExperience }} yrs</Cite>
</Figure>
</template>
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,5 @@
"verbatimModuleSyntax": true,
"jsx": "preserve"
},
"include": ["./astro.config.ts", "source/**/*"]
"include": ["./astro.config.ts", "source/**/*", "source/**/*.vue"]
}

0 comments on commit bf42d17

Please sign in to comment.