create-boltdocs 0.2.5 → 0.3.1

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/dist/index.cjs CHANGED
@@ -72,11 +72,11 @@ async function run() {
72
72
  name: "template",
73
73
  message: "Select a project preset:",
74
74
  choices: [{
75
- title: magenta("Base"),
75
+ title: _bdocs_dui.colors.magenta("Base"),
76
76
  description: "Hero and custom components.",
77
77
  value: "base"
78
78
  }, {
79
- title: yellow("i18n"),
79
+ title: _bdocs_dui.colors.yellow("i18n"),
80
80
  description: "Multi-language support (EN/ES).",
81
81
  value: "i18n"
82
82
  }],
package/dist/index.mjs CHANGED
@@ -47,11 +47,11 @@ async function run() {
47
47
  name: "template",
48
48
  message: "Select a project preset:",
49
49
  choices: [{
50
- title: magenta("Base"),
50
+ title: colors.magenta("Base"),
51
51
  description: "Hero and custom components.",
52
52
  value: "base"
53
53
  }, {
54
- title: yellow("i18n"),
54
+ title: colors.yellow("i18n"),
55
55
  description: "Multi-language support (EN/ES).",
56
56
  value: "i18n"
57
57
  }],
@@ -10,4 +10,4 @@
10
10
  @source directive tells Tailwind to scan Boltdocs client components
11
11
  inside node_modules for class usage and generate the necessary CSS.
12
12
  */
13
- @source "./node_modules/boltdocs/src/client";
13
+ @source "./node_modules/boltdocs/dist";
@@ -17,6 +17,6 @@
17
17
  "jsx": "react-jsx",
18
18
  "baseUrl": "."
19
19
  },
20
- "include": ["docs", "src", ".boltdocs/types.d.ts"],
20
+ "include": ["docs", "src", ".boltdocs/generated/types.d.ts"],
21
21
  "references": [{ "path": "./tsconfig.node.json" }]
22
22
  }
@@ -10,4 +10,4 @@
10
10
  @source directive tells Tailwind to scan Boltdocs client components
11
11
  inside node_modules for class usage and generate the necessary CSS.
12
12
  */
13
- @source "./node_modules/boltdocs/src/client";
13
+ @source "./node_modules/boltdocs/dist";
@@ -17,6 +17,6 @@
17
17
  "jsx": "react-jsx",
18
18
  "baseUrl": "."
19
19
  },
20
- "include": ["docs", "src", ".boltdocs/types.d.ts"],
20
+ "include": ["docs", "src", ".boltdocs/generated/types.d.ts"],
21
21
  "references": [{ "path": "./tsconfig.node.json" }]
22
22
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-boltdocs",
3
- "version": "0.2.5",
3
+ "version": "0.3.1",
4
4
  "description": "Create a new boltdocs project",
5
5
  "type": "module",
6
6
  "author": "Jesus Alcala",
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "dependencies": {
19
19
  "prompts": "^2.4.2",
20
- "@bdocs/dui": "0.1.1"
20
+ "@bdocs/dui": "0.1.2"
21
21
  },
22
22
  "devDependencies": {
23
23
  "@types/node": "^22.0.0",