Skip to content

Commit 6427500

Browse files
committed
feat: update template source paths to use cli/templates
1 parent 12b4c9c commit 6427500

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/shared/src/functions/scaffold.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ export async function scaffold (options: ScaffoldOptions, callbacks: ScaffoldCal
8787
debug(`templatePath does not exist: ${templatePath}`)
8888
}
8989
} else {
90-
const templateSource = `gh:vuetifyjs/templates/${templateName}`
90+
const templateSource = `gh:vuetifyjs/cli/templates/${templateName}`
9191

9292
try {
9393
await downloadTemplate(templateSource, {

packages/shared/src/utils/installFeature.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ export async function installFeature (feature: string, cwd: string, type: 'vueti
1515
} else {
1616
const tmp = mkdtempSync(join(tmpdir(), 'vuetify-feature-'))
1717
try {
18-
await downloadTemplate(`gh:vuetifyjs/templates/${templateName}`, {
18+
await downloadTemplate(`gh:vuetifyjs/cli/templates/${templateName}`, {
1919
dir: tmp,
2020
})
2121
cpSync(tmp, cwd, { recursive: true })

0 commit comments

Comments
 (0)