feat(registry): apply new structure of registry
This commit is contained in:
parent
1cad20eaa2
commit
0072836bfc
@ -3,9 +3,16 @@ import {z} from 'zod'
|
|||||||
export const REGISTRY_URL = 'https://raw.githubusercontent.com/pswui/ui/main/registry.json'
|
export const REGISTRY_URL = 'https://raw.githubusercontent.com/pswui/ui/main/registry.json'
|
||||||
export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
|
export const CONFIG_DEFAULT_PATH = 'pswui.config.js'
|
||||||
|
|
||||||
interface RegistryComponent {
|
type RegistryComponent =
|
||||||
name: string
|
| {
|
||||||
}
|
type: 'file'
|
||||||
|
name: string
|
||||||
|
}
|
||||||
|
| {
|
||||||
|
type: 'dir'
|
||||||
|
name: string
|
||||||
|
files: string[]
|
||||||
|
}
|
||||||
|
|
||||||
export interface Registry {
|
export interface Registry {
|
||||||
base: string
|
base: string
|
||||||
@ -14,6 +21,7 @@ export interface Registry {
|
|||||||
components: string
|
components: string
|
||||||
lib: string
|
lib: string
|
||||||
}
|
}
|
||||||
|
lib: string[]
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface Config {
|
export interface Config {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user