draft-cli 0.1.4 → 0.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @draft-ui/cli
2
2
 
3
+ ## 0.1.5
4
+
5
+ ### Patch Changes
6
+
7
+ - e968792: fix components.josn verify failed error
8
+
3
9
  ## 0.1.4
4
10
 
5
11
  ### Patch Changes
package/dist/index.js CHANGED
@@ -16,9 +16,7 @@ import path from "path";
16
16
  import fs from "fs-extra";
17
17
  import { z } from "zod";
18
18
  var configSchema = z.object({
19
- style: z.string(),
20
- rsc: z.boolean(),
21
- tsx: z.boolean(),
19
+ typescript: z.boolean(),
22
20
  tailwind: z.object({
23
21
  config: z.string(),
24
22
  css: z.string(),
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "draft-cli",
3
3
  "type": "module",
4
- "version": "0.1.4",
4
+ "version": "0.1.5",
5
5
  "private": false,
6
6
  "description": "A command-line tool for adding components to your Vue and React projects. Inspired by shadcn/ui.",
7
7
  "license": "MIT",
@@ -4,9 +4,7 @@ import fs from 'fs-extra'
4
4
  import { z } from 'zod'
5
5
 
6
6
  export const configSchema = z.object({
7
- style: z.string(),
8
- rsc: z.boolean(),
9
- tsx: z.boolean(),
7
+ typescript: z.boolean(),
10
8
  tailwind: z.object({
11
9
  config: z.string(),
12
10
  css: z.string(),