Skip to content

Commit 05102ee

Browse files
committed
chore: update style
1 parent 7b0ef15 commit 05102ee

File tree

4 files changed

+73
-19
lines changed

4 files changed

+73
-19
lines changed

.changeset/olive-apes-punch.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"create-template-fe": patch
3+
---
4+
5+
update style

package-lock.json

Lines changed: 64 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@
3636
"terser": "^5.17.1",
3737
"typescript": "^5.0.4",
3838
"unbuild": "^1.2.1",
39+
"ungradient": "^0.0.1",
3940
"unprompts": "^1.0.8"
4041
},
4142
"bugs": {

src/cli-start.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import fs from 'node:fs';
33
import degit from 'degit';
44
import kebabCase from 'lodash.kebabcase';
55
import { packageManagers, templates } from './templates';
6-
import { green, bgBlue, underline, cyan, yellow } from 'kolorist';
6+
import { green, underline, cyan, yellow, bold } from 'kolorist';
77
import {
88
intro,
99
outro,
@@ -16,9 +16,10 @@ import {
1616
isCancel,
1717
} from 'unprompts';
1818
import { execSync } from 'child_process';
19+
import { rainbow } from 'ungradient';
1920

2021
export const startCli = async () => {
21-
intro(bgBlue(' create-my-app '));
22+
intro(bold(rainbow('Create Template')));
2223

2324
const name = await text({
2425
message: "What's the name of your app?",

0 commit comments

Comments
 (0)