Skip to content

Commit d957a01

Browse files
authored
Merge pull request #4 from noxify/create-queue-fix
Fix path issue
2 parents 248c7d1 + 4fc7f8a commit d957a01

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,6 @@ jobs:
111111
uses: ./.github/setup
112112

113113
- name: Build
114-
run: pnpm build
114+
run: pnpm --filter "./packages/*" build
115115

116116
- run: pnpx pkg-pr-new publish ./packages/*

packages/create-vorsteh-queue/src/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ async function fetchTemplates(): Promise<Template[]> {
3838
try {
3939
// Fetch examples directory contents
4040
const response = await fetch(
41-
"https://api.github.com/repos/vorsteh-queue/vorsteh-queue/contents/examples",
41+
"https://api.github.com/repos/noxify/vorsteh-queue/contents/examples",
4242
)
4343
if (!response.ok) throw new Error(`HTTP ${response.status}`)
4444

@@ -51,7 +51,7 @@ async function fetchTemplates(): Promise<Template[]> {
5151
try {
5252
// Fetch package.json for each example
5353
const pkgResponse = await fetch(
54-
`https://api.github.com/repos/vorsteh-queue/vorsteh-queue/contents/examples/${item.name}/package.json`,
54+
`https://api.github.com/repos/noxify/vorsteh-queue/contents/examples/${item.name}/package.json`,
5555
)
5656
if (pkgResponse.ok) {
5757
const pkgData = (await pkgResponse.json()) as GitHubFile
@@ -112,7 +112,7 @@ async function downloadTemplate(template: Template, targetDir: string): Promise<
112112
s.start("Downloading template...")
113113

114114
try {
115-
await download(`github:vorsteh-queue/vorsteh-queue/${template.path}`, {
115+
await download(`github:noxify/vorsteh-queue/${template.path}`, {
116116
dir: targetDir,
117117
offline: false,
118118
})

0 commit comments

Comments
 (0)