Skip to content

Commit

Permalink
Version 3.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasloven committed Dec 31, 2023
1 parent 40fc794 commit c87939f
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion card-mod.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "card-mod",
"private": true,
"version": "3.4.0",
"version": "3.4.1",
"description": "",
"scripts": {
"build": "rollup -c",
Expand Down
8 changes: 4 additions & 4 deletions src/card-mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,10 @@ export class CardMod extends LitElement {

if (!customElements.get("card-mod")) {
customElements.define("card-mod", CardMod);
console.info(
`%cCARD-MOD ${pjson.version} IS INSTALLED`,
"color: green; font-weight: bold"
);
}
(async () => {
// Wait for scoped customElements registry to be set up
Expand All @@ -248,9 +252,5 @@ if (!customElements.get("card-mod")) {

if (!customElements.get("card-mod")) {
customElements.define("card-mod", CardMod);
console.info(
`%cCARD-MOD ${pjson.version} IS INSTALLED`,
"color: green; font-weight: bold"
);
}
})();

0 comments on commit c87939f

Please sign in to comment.