Directory structure change.
Home Assistant & Miscellaneous Deployment / Check and Create PR (push) Successful in 18s
Home Assistant & Miscellaneous Deployment / Home Assistant Configuration Check (push) Failing after 28s
Home Assistant & Miscellaneous Deployment / Generate list of added/modified/deleted services (push) Has been skipped
Home Assistant & Miscellaneous Deployment / Docker Compose Dry Run (push) Has been skipped

This commit is contained in:
2025-08-24 13:35:04 -04:00
parent 9c44b249e7
commit 22d20dbaab
200 changed files with 1 additions and 1 deletions
@@ -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: "auto-entities.js",
format: "es",
},
plugins: [
nodeResolve(),
json(),
typescript(),
babel({
exclude: "node_modules/**",
}),
!dev && terser({ format: { comments: false } }),
],
};