mirror of
https://github.com/NeonGamerBot-QK/saahild.com.git
synced 2025-07-20 04:39:04 +00:00
enhancement(lint): Fix lint errors for lib/jsscripts/log.ts
Co-authored-by: NeonGamerBot-QK <neon@saahild.com> Signed-off-by: zeon-neon[bot] <136533918+zeon-neon[bot]@users.noreply.github.com>
This commit is contained in:
parent
f69c4aa8cb
commit
dfb94eb22c
1 changed files with 20 additions and 20 deletions
|
@ -1,20 +1,20 @@
|
||||||
export function startingLog(): void {
|
export function startingLog(): void {
|
||||||
const isDev = process.env.NODE_ENV !== 'production'
|
const isDev = process.env.NODE_ENV !== "production";
|
||||||
console.log(
|
console.log(
|
||||||
`%c What's up?`,
|
`%c What's up?`,
|
||||||
`font-size: 120px;
|
`font-size: 120px;
|
||||||
font-family: "Poppins", sans-serif;
|
font-family: "Poppins", sans-serif;
|
||||||
background-size: 1000% 1000%;
|
background-size: 1000% 1000%;
|
||||||
animation: gradient 1s ease infinite;
|
animation: gradient 1s ease infinite;
|
||||||
`
|
`,
|
||||||
)
|
);
|
||||||
console.log(
|
console.log(
|
||||||
`%c Thanks for visting this site you can dontate me at https://ko-fi.com/saahil\n Try to find the easter egg in this site🥚\n HINT: to use it you must use the console it is a very VERY hard one`,
|
`%c Thanks for visting this site you can dontate me at https://ko-fi.com/saahil\n Try to find the easter egg in this site🥚\n HINT: to use it you must use the console it is a very VERY hard one`,
|
||||||
`font-size: 15px;`
|
`font-size: 15px;`,
|
||||||
)
|
);
|
||||||
if (isDev) {
|
if (isDev) {
|
||||||
console.debug(
|
console.debug(
|
||||||
'This message will show during production build. & development build'
|
"This message will show during production build. & development build",
|
||||||
)
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue