Skip to content

Commit

Permalink
feat: updated font library
Browse files Browse the repository at this point in the history
  • Loading branch information
Sly777 committed Sep 11, 2023
1 parent 0107340 commit 4a7ce2e
Show file tree
Hide file tree
Showing 6 changed files with 442 additions and 374 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

/src/components
/src/components/**/*
package.lock.json

# Created by https://www.toptal.com/developers/gitignore/api/windows,macos,linux,nextjs,node,yarn,webstorm+all
# Edit at https://www.toptal.com/developers/gitignore?templates=windows,macos,linux,nextjs,node,yarn,webstorm+all
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,13 @@
"version-it": "yarn build && yarn version --patch && git push --follow-tags"
},
"dependencies": {
"cfonts": "3.2.0",
"commander": "11.0.0",
"emmet": "2.4.6",
"figlet": "1.6.0",
"handlebars": "4.7.8",
"inquirer": "9.2.11"
},
"devDependencies": {
"@types/figlet": "1.5.6",
"@types/inquirer": "9.0.3",
"@types/node": "20.6.0",
"@typescript-eslint/eslint-plugin": "6.6.0",
Expand Down
4 changes: 2 additions & 2 deletions src/cliTool.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import figlet from "figlet";
import cfonts from "cfonts";
import defaultSettings from "@/creatorSettings/creatorSettings";
import {
CreatorSettings,
Expand Down Expand Up @@ -29,7 +29,7 @@ export class CliTool {

constructor() {
console.clear();
console.log(figlet.textSync("Hayde", { font: "Slant" }));
cfonts.say("Hayde!", { font: "tiny", colors: ["#EBC16F"] });
}

private checkBeforeStart() {
Expand Down
File renamed without changes.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"resolveJsonModule": true,
"paths": {
"@/*": ["./src/*"]
}
},
"typeRoots": ["src/types", "node_modules/@types"]
},
"include": ["src"],
"exclude": ["../dist", "./node_modules"]
Expand Down
Loading

0 comments on commit 4a7ce2e

Please sign in to comment.