Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ const { data, status, error } = useFetch(
() => `/api/project/${route.params.slug}/contributors/active-contributors`,
{
params: {
interval: activeTab,
granularity: activeTab,
repository: selectedRepository,
startDate,
endDate,
Expand Down
1 change: 1 addition & 0 deletions frontend/dontuse.env.test
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
NUXT_TINYBIRD_TOKEN=somefaketoken
3 changes: 2 additions & 1 deletion frontend/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ export default defineNuxtConfig({
'@nuxt/eslint',
'@primevue/nuxt-module',
'nuxt-echarts',
'@nuxtjs/storybook'
'@nuxtjs/storybook',
'@nuxt/test-utils/module'
],
css: ['~/assets/styles/main.scss'],
tailwindcss,
Expand Down
9 changes: 6 additions & 3 deletions frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"type": "module",
"scripts": {
"build": "nuxt build",
"dev": "nuxt dev --open",
"dev": "nuxt dev",
"generate": "nuxt generate",
"preview": "nuxt preview",
"postinstall": "nuxt prepare",
Expand All @@ -19,6 +19,7 @@
"@nuxt/eslint": "^0.7.5",
"@pinia/nuxt": "0.9.0",
"@primevue/themes": "^4.2.5",
"dayjs": "^1.11.13",
"echarts": "^5.6.0",
"eslint": "^9.18.0",
"lodash": "^4.17.21",
Expand All @@ -33,6 +34,7 @@
"devDependencies": {
"@chromatic-com/storybook": "^3.2.4",
"@eslint/eslintrc": "^3.2.0",
"@nuxt/test-utils": "^3.17.0",
"@nuxtjs/storybook": "8.3.3",
"@nuxtjs/tailwindcss": "^6.13.1",
"@primevue/nuxt-module": "^4.2.5",
Expand All @@ -51,14 +53,15 @@
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-storybook": "^0.11.2",
"happy-dom": "^17.1.8",
"husky": "^9.1.7",
"nuxt-echarts": "^0.2.4",
"sass": "^1.83.4",
"sass-embedded": "^1.83.4",
"storybook": "8.4.7",
"vitest": "^3.0.7",
"typescript": "^5.7.3",
"typescript-eslint": "^8.21.0"
"typescript-eslint": "^8.21.0",
"vitest": "^3.0.7"
},
"eslintConfig": {
"extends": [
Expand Down
Loading