Skip to content

Commit afe232f

Browse files
committed
chore: update to latest begit
1 parent b53f45c commit afe232f

4 files changed

Lines changed: 9 additions & 9 deletions

File tree

packages/create/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"dependencies": {
4848
"@clack/prompts": "0.10.1",
4949
"picocolors": "^1.1.1",
50-
"@begit/core": "^0.3.0",
50+
"@begit/core": "^0.3.1",
5151
"citty": "^0.1.6",
5252
"sucrase": "^3.35.0",
5353
"@solid-cli/utils": "workspace:*"

packages/create/src/create-start.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ export type CreateStartArgs = {
99
};
1010

1111
export const createStartTS = ({ template, destination }: CreateStartArgs) => {
12-
return downloadRepo(GithubFetcher, {
12+
return downloadRepo({
1313
repo: { owner: "solidjs", name: "solid-start", subdir: `examples/${template}` },
1414
dest: destination,
15-
});
15+
}, GithubFetcher);
1616
};
1717

1818
export const createStartJS = async ({ template, destination }: CreateStartArgs) => {

packages/create/src/create-vanilla.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export const createVanilla = (args: CreateVanillaArgs, transpile?: boolean) => {
1515
return createVanillaTS(args);
1616
};
1717
export const createVanillaTS = async ({ template, destination }: CreateVanillaArgs) => {
18-
return await downloadRepo(GithubFetcher, { repo: { owner: "solidjs", name: "templates", subdir: template }, dest: destination });
18+
return await downloadRepo({ repo: { owner: "solidjs", name: "templates", subdir: template }, dest: destination }, GithubFetcher);
1919
};
2020

2121
export const createVanillaJS = async ({ template, destination }: CreateVanillaArgs) => {

pnpm-lock.yaml

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)