Skip to content

Commit

Permalink
📝 Clean up branding
Browse files Browse the repository at this point in the history
  • Loading branch information
hyperb1iss committed Jul 27, 2024
1 parent 224637f commit 253955b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# 🌟 Contributing to Hyper Light Card
# 🌟 Contributing to hyper-light-card

🌠🌠🌠 Let's make beautiful pixels together! 🌠🌠🌠

Expand All @@ -12,7 +12,7 @@

### Forking and Branching

1. 🍴 [Fork the Hyper Light Card repository](https://help.github.com/articles/fork-a-repo).
1. 🍴 [Fork the hyper-light-card repository](https://help.github.com/articles/fork-a-repo).
2. 🌿 Create a branch with a descriptive name:
```sh
git checkout -b add-new-effect-selector
Expand Down
2 changes: 1 addition & 1 deletion scripts/copy-to-hass.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ filesToCopy.forEach(file => {
console.log(`Attempting to copy ${sourcePath} to ${destPath}`);

Check failure on line 32 in scripts/copy-to-hass.js

View workflow job for this annotation

GitHub Actions / analyze

'console' is not defined

if (fs.existsSync(sourcePath)) {
fs.copyFile(sourcePath, destPath, (err) => {
fs.copyFile(sourcePath, destPath, err => {
if (err) {
console.error(`Error copying ${file}: ${err}`);

Check failure on line 37 in scripts/copy-to-hass.js

View workflow job for this annotation

GitHub Actions / analyze

'console' is not defined
} else {
Expand Down
2 changes: 1 addition & 1 deletion src/hyper-light-card.ts
Original file line number Diff line number Diff line change
Expand Up @@ -386,6 +386,6 @@ customElements.define('hyper-light-card', HyperLightCard);

const version = process.env.VERSION;
console.log(
`%c 🚀✨🌟 HyperLightCard v${version} launched! 🌠🛸🌈 `,
`%c 🚀✨🌟 hyper-light-card v${version} launched! 🌠🛸🌈 `,
'background: linear-gradient(90deg, #000033 0%, #0033cc 50%, #6600cc 100%); color: #00ffff; font-weight: bold; padding: 5px 10px; border-radius: 5px; text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff, 0 0 20px #00ffff, 0 0 35px #00ffff, 0 0 40px #00ffff, 0 0 50px #00ffff, 0 0 75px #00ffff;',
);

0 comments on commit 253955b

Please sign in to comment.