Skip to content

Commit 26eddb1

Browse files
committed
chore: use alias
1 parent b8ad59d commit 26eddb1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/app.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<script setup lang="ts">
22
import hexRgb from 'hex-rgb'
33
4-
import { allowedRepos } from '~~/shared/repos'
4+
import { allowedRepos } from '#shared/repos'
55
66
const repo = ref('nuxt/nuxt')
77

server/api/clusters/[...repo].ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { clusterEmbeddings } from '../../utils/cluster'
22
import { getEmbeddingsForIssue } from '../../utils/embeddings'
33

4-
import { isAllowedRepo, type AllowedRepo } from '~~/shared/repos'
4+
import { isAllowedRepo, type AllowedRepo } from '#shared/repos'
55

66
const linkedRepos: Record<string, AllowedRepo[]> = {
77
'danielroe/beasties': ['GoogleChromeLabs/critters'],

server/api/issues/[...repo].ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { Octokit } from '@octokit/rest'
22

33
import { getLabels, type Issue } from '../../utils/github'
4-
import { isAllowedRepo } from '~~/shared/repos'
4+
import { isAllowedRepo } from '#shared/repos'
55

66
const labelsToExclude = ['documentation', 'invalid', 'enhancement']
77
const knownBots = new Set(['renovate', 'renovate[bot]'])

0 commit comments

Comments
 (0)