Merge branch 'radix-vue:dev' into dev
This commit is contained in:
commit
8445b45292
|
|
@ -104,6 +104,7 @@ Would you like to use TypeScript (recommended)? no / yes
|
||||||
Which framework are you using? Astro
|
Which framework are you using? Astro
|
||||||
Which style would you like to use? › Default
|
Which style would you like to use? › Default
|
||||||
Which color would you like to use as base color? › Slate
|
Which color would you like to use as base color? › Slate
|
||||||
|
Where is your tsconfig.json located? › ./tsconfig.json
|
||||||
Where is your global CSS file? › src/styles/globals.css
|
Where is your global CSS file? › src/styles/globals.css
|
||||||
Do you want to use CSS variables for colors? › no / yes
|
Do you want to use CSS variables for colors? › no / yes
|
||||||
Where is your tailwind.config located? › tailwind.config.mjs
|
Where is your tailwind.config located? › tailwind.config.mjs
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ Would you like to use TypeScript (recommended)? no / yes
|
||||||
Which framework are you using? Vite / Nuxt / Laravel
|
Which framework are you using? Vite / Nuxt / Laravel
|
||||||
Which style would you like to use? › Default
|
Which style would you like to use? › Default
|
||||||
Which color would you like to use as base color? › Slate
|
Which color would you like to use as base color? › Slate
|
||||||
|
Where is your tsconfig.json located? › ./tsconfig.json
|
||||||
Where is your global CSS file? › resources/css/app.css
|
Where is your global CSS file? › resources/css/app.css
|
||||||
Do you want to use CSS variables for colors? › no / yes
|
Do you want to use CSS variables for colors? › no / yes
|
||||||
Where is your tailwind.config.js located? › tailwind.config.js
|
Where is your tailwind.config.js located? › tailwind.config.js
|
||||||
|
|
|
||||||
|
|
@ -20,6 +20,7 @@ If you encounter the error `ERROR: Cannot read properties of undefined (reading
|
||||||
```bash
|
```bash
|
||||||
npm install -D typescript
|
npm install -D typescript
|
||||||
```
|
```
|
||||||
|
|
||||||
### Install TailwindCSS module
|
### Install TailwindCSS module
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
|
|
@ -183,6 +184,7 @@ Would you like to use TypeScript (recommended)? no / yes
|
||||||
Which framework are you using? Vite / Nuxt / Laravel
|
Which framework are you using? Vite / Nuxt / Laravel
|
||||||
Which style would you like to use? › Default
|
Which style would you like to use? › Default
|
||||||
Which color would you like to use as base color? › Slate
|
Which color would you like to use as base color? › Slate
|
||||||
|
Where is your tsconfig.json located? › ./tsconfig.json
|
||||||
Where is your global CSS file? › › src/index.css
|
Where is your global CSS file? › › src/index.css
|
||||||
Do you want to use CSS variables for colors? › no / yes
|
Do you want to use CSS variables for colors? › no / yes
|
||||||
Where is your tailwind.config.js located? › tailwind.config.js
|
Where is your tailwind.config.js located? › tailwind.config.js
|
||||||
|
|
|
||||||
|
|
@ -75,7 +75,7 @@ Install `tailwindcss` and its peer dependencies, then generate your `tailwind.co
|
||||||
npm install -D tailwindcss autoprefixer postcss
|
npm install -D tailwindcss autoprefixer postcss
|
||||||
```
|
```
|
||||||
|
|
||||||
#### `postcss.config.js`
|
#### `postcss.config.js`
|
||||||
|
|
||||||
```js
|
```js
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
@ -159,6 +159,7 @@ Would you like to use TypeScript (recommended)? no / yes
|
||||||
Which framework are you using? Vite / Nuxt / Laravel
|
Which framework are you using? Vite / Nuxt / Laravel
|
||||||
Which style would you like to use? › Default
|
Which style would you like to use? › Default
|
||||||
Which color would you like to use as base color? › Slate
|
Which color would you like to use as base color? › Slate
|
||||||
|
Where is your tsconfig.json located? › ./tsconfig.json
|
||||||
Where is your global CSS file? › › src/index.css
|
Where is your global CSS file? › › src/index.css
|
||||||
Do you want to use CSS variables for colors? › no / yes
|
Do you want to use CSS variables for colors? › no / yes
|
||||||
Where is your tailwind.config.js located? › tailwind.config.js
|
Where is your tailwind.config.js located? › tailwind.config.js
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,8 @@ const shapes = computed(() => {
|
||||||
return
|
return
|
||||||
Object.keys(shape).forEach((name) => {
|
Object.keys(shape).forEach((name) => {
|
||||||
const item = shape[name] as ZodAny
|
const item = shape[name] as ZodAny
|
||||||
let options = 'values' in item._def ? item._def.values as string[] : undefined
|
const baseItem = getBaseSchema(item) as ZodAny
|
||||||
|
let options = (baseItem && 'values' in baseItem._def) ? baseItem._def.values as string[] : undefined
|
||||||
if (!Array.isArray(options) && typeof options === 'object')
|
if (!Array.isArray(options) && typeof options === 'object')
|
||||||
options = Object.values(options)
|
options = Object.values(options)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -28,7 +28,8 @@ const shapes = computed(() => {
|
||||||
return
|
return
|
||||||
Object.keys(shape).forEach((name) => {
|
Object.keys(shape).forEach((name) => {
|
||||||
const item = shape[name] as ZodAny
|
const item = shape[name] as ZodAny
|
||||||
let options = 'values' in item._def ? item._def.values as string[] : undefined
|
const baseItem = getBaseSchema(item) as ZodAny
|
||||||
|
let options = (baseItem && 'values' in baseItem._def) ? baseItem._def.values as string[] : undefined
|
||||||
if (!Array.isArray(options) && typeof options === 'object')
|
if (!Array.isArray(options) && typeof options === 'object')
|
||||||
options = Object.values(options)
|
options = Object.values(options)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -135,6 +135,16 @@ export async function promptForConfig(
|
||||||
value: color.name,
|
value: color.name,
|
||||||
})),
|
})),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'text',
|
||||||
|
name: 'tsConfigPath',
|
||||||
|
message: (prev, values) => `Where is your ${highlight(values.typescript ? 'tsconfig.json' : 'jsconfig.json')} file?`,
|
||||||
|
initial: (prev, values) => {
|
||||||
|
const prefix = values.framework === 'nuxt' ? '.nuxt/' : './'
|
||||||
|
const path = values.typescript ? 'tsconfig.json' : 'jsconfig.json'
|
||||||
|
return prefix + path
|
||||||
|
},
|
||||||
|
},
|
||||||
{
|
{
|
||||||
type: 'text',
|
type: 'text',
|
||||||
name: 'tailwindCss',
|
name: 'tailwindCss',
|
||||||
|
|
@ -189,6 +199,7 @@ export async function promptForConfig(
|
||||||
$schema: 'https://shadcn-vue.com/schema.json',
|
$schema: 'https://shadcn-vue.com/schema.json',
|
||||||
style: options.style,
|
style: options.style,
|
||||||
typescript: options.typescript,
|
typescript: options.typescript,
|
||||||
|
tsConfigPath: options.tsConfigPath,
|
||||||
framework: options.framework,
|
framework: options.framework,
|
||||||
tailwind: {
|
tailwind: {
|
||||||
config: options.tailwindConfig,
|
config: options.tailwindConfig,
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ import { resolveImport } from '@/src/utils/resolve-import'
|
||||||
export const DEFAULT_STYLE = 'default'
|
export const DEFAULT_STYLE = 'default'
|
||||||
export const DEFAULT_COMPONENTS = '@/components'
|
export const DEFAULT_COMPONENTS = '@/components'
|
||||||
export const DEFAULT_UTILS = '@/lib/utils'
|
export const DEFAULT_UTILS = '@/lib/utils'
|
||||||
|
export const DEFAULT_TYPESCRIPT_CONFIG = './tsconfig.json'
|
||||||
export const DEFAULT_TAILWIND_CONFIG = 'tailwind.config.js'
|
export const DEFAULT_TAILWIND_CONFIG = 'tailwind.config.js'
|
||||||
export const DEFAULT_TAILWIND_BASE_COLOR = 'slate'
|
export const DEFAULT_TAILWIND_BASE_COLOR = 'slate'
|
||||||
|
|
||||||
|
|
@ -24,6 +25,7 @@ export const rawConfigSchema = z
|
||||||
$schema: z.string().optional(),
|
$schema: z.string().optional(),
|
||||||
style: z.string(),
|
style: z.string(),
|
||||||
typescript: z.boolean().default(true),
|
typescript: z.boolean().default(true),
|
||||||
|
tsConfigPath: z.string().default(DEFAULT_TYPESCRIPT_CONFIG),
|
||||||
tailwind: z.object({
|
tailwind: z.object({
|
||||||
config: z.string(),
|
config: z.string(),
|
||||||
css: z.string(),
|
css: z.string(),
|
||||||
|
|
@ -68,7 +70,7 @@ export async function resolveConfigPaths(cwd: string, config: RawConfig) {
|
||||||
let tsConfig: ConfigLoaderResult | undefined
|
let tsConfig: ConfigLoaderResult | undefined
|
||||||
let tsConfigPath = path.resolve(
|
let tsConfigPath = path.resolve(
|
||||||
cwd,
|
cwd,
|
||||||
config.framework === 'nuxt' ? '.nuxt/tsconfig.json' : './tsconfig.json',
|
config.tsConfigPath,
|
||||||
)
|
)
|
||||||
|
|
||||||
if (config.typescript) {
|
if (config.typescript) {
|
||||||
|
|
@ -83,10 +85,9 @@ export async function resolveConfigPaths(cwd: string, config: RawConfig) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
tsConfigPath = path.resolve(cwd, './jsconfig.json')
|
tsConfigPath = config.tsConfigPath.includes('tsconfig.json') ? path.resolve(cwd, './jsconfig.json') : path.resolve(cwd, config.tsConfigPath)
|
||||||
tsConfig = loadConfig(tsConfigPath)
|
tsConfig = loadConfig(tsConfigPath)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tsConfig.resultType === 'failed') {
|
if (tsConfig.resultType === 'failed') {
|
||||||
throw new Error(
|
throw new Error(
|
||||||
`Failed to load ${tsConfigPath}. ${tsConfig.message ?? ''}`.trim(),
|
`Failed to load ${tsConfigPath}. ${tsConfig.message ?? ''}`.trim(),
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ it('get raw config', async () => {
|
||||||
baseColor: 'neutral',
|
baseColor: 'neutral',
|
||||||
cssVariables: false,
|
cssVariables: false,
|
||||||
},
|
},
|
||||||
|
tsConfigPath: './tsconfig.json',
|
||||||
aliases: {
|
aliases: {
|
||||||
components: '@/components',
|
components: '@/components',
|
||||||
utils: '@/lib/utils',
|
utils: '@/lib/utils',
|
||||||
|
|
@ -55,6 +56,7 @@ it('get config', async () => {
|
||||||
utils: '@/lib/utils',
|
utils: '@/lib/utils',
|
||||||
},
|
},
|
||||||
framework: 'Vite',
|
framework: 'Vite',
|
||||||
|
tsConfigPath: './tsconfig.json',
|
||||||
resolvedPaths: {
|
resolvedPaths: {
|
||||||
tailwindConfig: path.resolve(
|
tailwindConfig: path.resolve(
|
||||||
__dirname,
|
__dirname,
|
||||||
|
|
@ -102,6 +104,7 @@ it('get config', async () => {
|
||||||
utils: '~/lib/utils',
|
utils: '~/lib/utils',
|
||||||
},
|
},
|
||||||
framework: 'Vite',
|
framework: 'Vite',
|
||||||
|
tsConfigPath: './tsconfig.json',
|
||||||
resolvedPaths: {
|
resolvedPaths: {
|
||||||
tailwindConfig: path.resolve(
|
tailwindConfig: path.resolve(
|
||||||
__dirname,
|
__dirname,
|
||||||
|
|
@ -148,6 +151,7 @@ it('get config', async () => {
|
||||||
utils: '@/lib/utils',
|
utils: '@/lib/utils',
|
||||||
},
|
},
|
||||||
framework: 'Vite',
|
framework: 'Vite',
|
||||||
|
tsConfigPath: './tsconfig.json',
|
||||||
resolvedPaths: {
|
resolvedPaths: {
|
||||||
tailwindConfig: path.resolve(
|
tailwindConfig: path.resolve(
|
||||||
__dirname,
|
__dirname,
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user