benflux-ui 0.1.1 → 0.1.2
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/bin/benflux-ui.js +5 -6
- package/dist/index.js +5 -6
- package/dist/index.mjs +5 -6
- package/package.json +1 -1
package/dist/bin/benflux-ui.js
CHANGED
|
@@ -151,13 +151,13 @@ async function initCommand(options) {
|
|
|
151
151
|
spinner3.stop(`Components directory: ${import_picocolors.default.cyan(settings.componentsDir)}`);
|
|
152
152
|
spinner3.start("Creating benflux-ui.json config...");
|
|
153
153
|
const config = {
|
|
154
|
-
$schema: "https://benflux-ui.
|
|
154
|
+
$schema: "https://benflux-ui.vercel.app/schema.json",
|
|
155
155
|
style: "default",
|
|
156
156
|
typescript: settings.typescript,
|
|
157
157
|
tailwind: {
|
|
158
158
|
config: hasTw ? "tailwind.config.ts" : "tailwind.config.ts",
|
|
159
159
|
css: "src/app/globals.css",
|
|
160
|
-
baseColor: "
|
|
160
|
+
baseColor: "default"
|
|
161
161
|
},
|
|
162
162
|
aliases: {
|
|
163
163
|
components: `@/${settings.componentsDir.replace("src/", "")}`,
|
|
@@ -200,11 +200,10 @@ export function cn(...inputs: ClassValue[]) {
|
|
|
200
200
|
import_picocolors.default.green("\u2713") + " Benflux UI initialized!",
|
|
201
201
|
"",
|
|
202
202
|
import_picocolors.default.bold("Next steps:"),
|
|
203
|
-
` ${import_picocolors.default.cyan("npx benflux-ui add button")}
|
|
204
|
-
` ${import_picocolors.default.cyan("npx benflux-ui
|
|
205
|
-
` ${import_picocolors.default.cyan("npx benflux-ui list")} See all components`,
|
|
203
|
+
` ${import_picocolors.default.cyan("npx benflux-ui add button")} Add a component`,
|
|
204
|
+
` ${import_picocolors.default.cyan("npx benflux-ui list")} See all components`,
|
|
206
205
|
"",
|
|
207
|
-
import_picocolors.default.
|
|
206
|
+
` ${import_picocolors.default.bold("Docs:")} \x1B]8;;https://benflux-ui.vercel.app\x07https://benflux-ui.vercel.app\x1B]8;;\x07`
|
|
208
207
|
].join("\n")
|
|
209
208
|
);
|
|
210
209
|
}
|
package/dist/index.js
CHANGED
|
@@ -169,13 +169,13 @@ async function initCommand(options) {
|
|
|
169
169
|
spinner3.stop(`Components directory: ${import_picocolors.default.cyan(settings.componentsDir)}`);
|
|
170
170
|
spinner3.start("Creating benflux-ui.json config...");
|
|
171
171
|
const config = {
|
|
172
|
-
$schema: "https://benflux-ui.
|
|
172
|
+
$schema: "https://benflux-ui.vercel.app/schema.json",
|
|
173
173
|
style: "default",
|
|
174
174
|
typescript: settings.typescript,
|
|
175
175
|
tailwind: {
|
|
176
176
|
config: hasTw ? "tailwind.config.ts" : "tailwind.config.ts",
|
|
177
177
|
css: "src/app/globals.css",
|
|
178
|
-
baseColor: "
|
|
178
|
+
baseColor: "default"
|
|
179
179
|
},
|
|
180
180
|
aliases: {
|
|
181
181
|
components: `@/${settings.componentsDir.replace("src/", "")}`,
|
|
@@ -218,11 +218,10 @@ export function cn(...inputs: ClassValue[]) {
|
|
|
218
218
|
import_picocolors.default.green("\u2713") + " Benflux UI initialized!",
|
|
219
219
|
"",
|
|
220
220
|
import_picocolors.default.bold("Next steps:"),
|
|
221
|
-
` ${import_picocolors.default.cyan("npx benflux-ui add button")}
|
|
222
|
-
` ${import_picocolors.default.cyan("npx benflux-ui
|
|
223
|
-
` ${import_picocolors.default.cyan("npx benflux-ui list")} See all components`,
|
|
221
|
+
` ${import_picocolors.default.cyan("npx benflux-ui add button")} Add a component`,
|
|
222
|
+
` ${import_picocolors.default.cyan("npx benflux-ui list")} See all components`,
|
|
224
223
|
"",
|
|
225
|
-
import_picocolors.default.
|
|
224
|
+
` ${import_picocolors.default.bold("Docs:")} \x1B]8;;https://benflux-ui.vercel.app\x07https://benflux-ui.vercel.app\x1B]8;;\x07`
|
|
226
225
|
].join("\n")
|
|
227
226
|
);
|
|
228
227
|
}
|
package/dist/index.mjs
CHANGED
|
@@ -122,13 +122,13 @@ async function initCommand(options) {
|
|
|
122
122
|
spinner3.stop(`Components directory: ${pc.cyan(settings.componentsDir)}`);
|
|
123
123
|
spinner3.start("Creating benflux-ui.json config...");
|
|
124
124
|
const config = {
|
|
125
|
-
$schema: "https://benflux-ui.
|
|
125
|
+
$schema: "https://benflux-ui.vercel.app/schema.json",
|
|
126
126
|
style: "default",
|
|
127
127
|
typescript: settings.typescript,
|
|
128
128
|
tailwind: {
|
|
129
129
|
config: hasTw ? "tailwind.config.ts" : "tailwind.config.ts",
|
|
130
130
|
css: "src/app/globals.css",
|
|
131
|
-
baseColor: "
|
|
131
|
+
baseColor: "default"
|
|
132
132
|
},
|
|
133
133
|
aliases: {
|
|
134
134
|
components: `@/${settings.componentsDir.replace("src/", "")}`,
|
|
@@ -171,11 +171,10 @@ export function cn(...inputs: ClassValue[]) {
|
|
|
171
171
|
pc.green("\u2713") + " Benflux UI initialized!",
|
|
172
172
|
"",
|
|
173
173
|
pc.bold("Next steps:"),
|
|
174
|
-
` ${pc.cyan("npx benflux-ui add button")}
|
|
175
|
-
` ${pc.cyan("npx benflux-ui
|
|
176
|
-
` ${pc.cyan("npx benflux-ui list")} See all components`,
|
|
174
|
+
` ${pc.cyan("npx benflux-ui add button")} Add a component`,
|
|
175
|
+
` ${pc.cyan("npx benflux-ui list")} See all components`,
|
|
177
176
|
"",
|
|
178
|
-
pc.
|
|
177
|
+
` ${pc.bold("Docs:")} \x1B]8;;https://benflux-ui.vercel.app\x07https://benflux-ui.vercel.app\x1B]8;;\x07`
|
|
179
178
|
].join("\n")
|
|
180
179
|
);
|
|
181
180
|
}
|