mirror of
https://github.com/shadcn-ui/ui.git
synced 2026-06-28 07:04:20 +00:00
Compare commits
2 Commits
shadcn-ui@
...
shadcn-ui@
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d604b82fb3 | ||
|
|
658c710bce |
@@ -1,5 +1,11 @@
|
|||||||
# @shadcn/ui
|
# @shadcn/ui
|
||||||
|
|
||||||
|
## 0.2.1
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#641](https://github.com/shadcn/ui/pull/641) [`658c710`](https://github.com/shadcn/ui/commit/658c710bced7b827a0d32dbcda03a4136961dff1) Thanks [@shadcn](https://github.com/shadcn)! - everything is new
|
||||||
|
|
||||||
## 0.2.0
|
## 0.2.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "shadcn-ui",
|
"name": "shadcn-ui",
|
||||||
"version": "0.2.0",
|
"version": "0.2.1",
|
||||||
"description": "Add components to your apps.",
|
"description": "Add components to your apps.",
|
||||||
"publishConfig": {
|
"publishConfig": {
|
||||||
"access": "public"
|
"access": "public"
|
||||||
|
|||||||
@@ -19,6 +19,7 @@ const explorer = cosmiconfig("components", {
|
|||||||
|
|
||||||
export const rawConfigSchema = z
|
export const rawConfigSchema = z
|
||||||
.object({
|
.object({
|
||||||
|
$schema: z.string().optional(),
|
||||||
style: z.string(),
|
style: z.string(),
|
||||||
rsc: z.coerce.boolean().default(false),
|
rsc: z.coerce.boolean().default(false),
|
||||||
tailwind: z.object({
|
tailwind: z.object({
|
||||||
|
|||||||
@@ -11,10 +11,7 @@ import { HttpsProxyAgent } from "https-proxy-agent"
|
|||||||
import fetch from "node-fetch"
|
import fetch from "node-fetch"
|
||||||
import * as z from "zod"
|
import * as z from "zod"
|
||||||
|
|
||||||
// const baseUrl = process.env.COMPONENTS_REGISTRY_URL ?? "https://ui.shadcn.com"
|
const baseUrl = process.env.COMPONENTS_REGISTRY_URL ?? "https://ui.shadcn.com"
|
||||||
const baseUrl =
|
|
||||||
process.env.COMPONENTS_REGISTRY_URL ??
|
|
||||||
"https://ui-git-feat-minor-updates-shadcn-pro.vercel.app"
|
|
||||||
const agent = process.env.https_proxy
|
const agent = process.env.https_proxy
|
||||||
? new HttpsProxyAgent(process.env.https_proxy)
|
? new HttpsProxyAgent(process.env.https_proxy)
|
||||||
: undefined
|
: undefined
|
||||||
|
|||||||
Reference in New Issue
Block a user