Skip to content

fix: use new sidebase/templates as base #37

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Jun 21, 2024
Merged
7 changes: 6 additions & 1 deletion src/configs/naiveui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,12 @@ const naiveui: ModuleConfig = {
scripts: [],
dependencies: [{
name: '@bg-dev/nuxt-naiveui',
version: '^1.11.0',
/*
* Pinned to v1.0.0-edge.2 as naiveui was failing on typecheck.
* replace this with the offical release, once it is out.
* See: https://github.com/becem-gharbi/nuxt-naiveui/issues/76
*/
version: '1.0.0-edge.2',
isDev: true
}],
nuxtConfig: {
Expand Down
2 changes: 1 addition & 1 deletion src/steps/1.downloadTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { say } from '../messages'
import type { Preferences } from '../types'

const KNOWN_TEMPLATES = {
merino: 'github:nuxt/starter#v3',
merino: 'github:sidebase/templates#nuxt-3.12.2',
cheviot: 'community/sidebase'
}

Expand Down