initial commit
This commit is contained in:
78
www/community/lovelace-fold-entity-row/fold-entity-row.js
Normal file
78
www/community/lovelace-fold-entity-row/fold-entity-row.js
Normal file
File diff suppressed because one or more lines are too long
BIN
www/community/lovelace-fold-entity-row/fold-entity-row.js.gz
Normal file
BIN
www/community/lovelace-fold-entity-row/fold-entity-row.js.gz
Normal file
Binary file not shown.
24
www/community/lovelace-fold-entity-row/rollup.config.js
Normal file
24
www/community/lovelace-fold-entity-row/rollup.config.js
Normal file
@@ -0,0 +1,24 @@
|
||||
import nodeResolve from "@rollup/plugin-node-resolve";
|
||||
import json from "@rollup/plugin-json";
|
||||
import typescript from "rollup-plugin-typescript2";
|
||||
import { terser } from "rollup-plugin-terser";
|
||||
import babel from "@rollup/plugin-babel";
|
||||
|
||||
const dev = process.env.ROLLUP_WATCH;
|
||||
|
||||
export default {
|
||||
input: "src/main.ts",
|
||||
output: {
|
||||
file: "fold-entity-row.js",
|
||||
format: "es",
|
||||
},
|
||||
plugins: [
|
||||
nodeResolve(),
|
||||
json(),
|
||||
typescript(),
|
||||
babel({
|
||||
exclude: "node_modules/**",
|
||||
}),
|
||||
!dev && terser({ format: { comments: false } }),
|
||||
],
|
||||
};
|
||||
BIN
www/community/lovelace-fold-entity-row/rollup.config.js.gz
Normal file
BIN
www/community/lovelace-fold-entity-row/rollup.config.js.gz
Normal file
Binary file not shown.
3623
www/community/lovelace-mushroom/mushroom.js
Normal file
3623
www/community/lovelace-mushroom/mushroom.js
Normal file
File diff suppressed because one or more lines are too long
BIN
www/community/lovelace-mushroom/mushroom.js.gz
Normal file
BIN
www/community/lovelace-mushroom/mushroom.js.gz
Normal file
Binary file not shown.
Reference in New Issue
Block a user