Skip to content

Commit

Permalink
move artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
jo-ket committed Dec 30, 2024
1 parent 18aadf7 commit 32f22e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
node_modules
package-lock.json
dist/*.map
dist/*.d.ts
*.map
*.d.ts
File renamed without changes.
2 changes: 1 addition & 1 deletion hacs.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"name": "Compact Cover Control Card",
"render_readme": true,
"filename": "compact-cover-control-card.js",
"content_in_root": false
"content_in_root": true
}
4 changes: 2 additions & 2 deletions rollup.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import terser from '@rollup/plugin-terser';
export default {
input: 'src/compact-cover-control-card.ts',
output: {
file: 'dist/compact-cover-control-card.js',
file: 'compact-cover-control-card.js',
format: 'es',
sourcemap: true
},
Expand All @@ -19,6 +19,6 @@ export default {
include: /node_modules/
}),
typescript(),
terser() // Add this line
terser()
]
};

0 comments on commit 32f22e2

Please sign in to comment.