Skip to content

Commit

Permalink
Fixed compiled js file
Browse files Browse the repository at this point in the history
  • Loading branch information
berrywhite96 committed Feb 17, 2023
1 parent 02d37e6 commit 749b08e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion package-lock.json

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

1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
"license": "MIT",
"dependencies": {
"@mdi/js": "^7.0.96",
"@rollup/plugin-commonjs": "^22.0.2",
"custom-card-helpers": "^1.9.0",
"lit": "^2.3.0",
"postcss-preset-env": "^7.7.2",
Expand Down
6 changes: 3 additions & 3 deletions shutter-row.js
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ var mdiPlus = "M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z";
var mdiStop = "M18,18H6V6H18V18Z";

// GENERAL
const HASSIO_CARD_ID = "shutter-row-dev";
const HASSIO_CARD_EDITOR_ID = HASSIO_CARD_ID + "-editor-dev";
const HASSIO_CARD_ID = "shutter-row";
const HASSIO_CARD_EDITOR_ID = HASSIO_CARD_ID + "-editor";
const HASSIO_CARD_NAME = "Shutter Row";
const VERSION = "0.3.0 rc1";
const VERSION = "0.3.0 rc2";

// SVG PATHS
const PATH_SHUTTER_100 =
Expand Down
6 changes: 3 additions & 3 deletions src/const.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
// GENERAL
export const HASSIO_CARD_ID = "shutter-row-dev";
export const HASSIO_CARD_EDITOR_ID = HASSIO_CARD_ID + "-editor-dev";
export const HASSIO_CARD_ID = "shutter-row";
export const HASSIO_CARD_EDITOR_ID = HASSIO_CARD_ID + "-editor";
export const HASSIO_CARD_NAME = "Shutter Row";
export const VERSION = "0.3.0 rc1";
export const VERSION = "0.3.0 rc2";

// SVG PATHS
export const PATH_SHUTTER_100 =
Expand Down

0 comments on commit 749b08e

Please sign in to comment.