mirror of
https://github.com/home-assistant/frontend.git
synced 2025-04-22 20:37:20 +00:00

* Add scheduler panel * Rename scheduler to calendar * Continue * First working version * Fix lint errors * Fix comments * Fix calendar display * Continue fixing comments * Continue fixing comments 2 * Continue fixing comments 3 * Fix UI to work with the new PRs * Use preact-compat instead of react * Fix tests * Move css file in a panels specific folder * Fix tests * Add Event details dialog * Improve date format * Remove event details * Continue * Continue calendar * continue * Continue * Cleaning * Fix PR comments * Lint * Clean useless import and css * Fix PR comments * Fix PR comments * Fix PR comments * Clean Event handler * Fix week view * Continue
47 lines
1.3 KiB
JSON
47 lines
1.3 KiB
JSON
{
|
|
"entrypoint": "index.html",
|
|
"shell": "src/entrypoints/app.js",
|
|
"fragments": [
|
|
"src/panels/config/ha-panel-config.js",
|
|
"src/panels/dev-event/ha-panel-dev-event.js",
|
|
"src/panels/dev-info/ha-panel-dev-info.js",
|
|
"src/panels/dev-mqtt/ha-panel-dev-mqtt.js",
|
|
"src/panels/dev-service/ha-panel-dev-service.js",
|
|
"src/panels/dev-state/ha-panel-dev-state.js",
|
|
"src/panels/dev-template/ha-panel-dev-template.js",
|
|
"src/panels/history/ha-panel-history.js",
|
|
"src/panels/iframe/ha-panel-iframe.js",
|
|
"src/panels/kiosk/ha-panel-kiosk.js",
|
|
"src/panels/logbook/ha-panel-logbook.js",
|
|
"src/panels/map/ha-panel-map.js",
|
|
"src/panels/shopping-list/ha-panel-shopping-list.js",
|
|
"src/panels/mailbox/ha-panel-mailbox.js",
|
|
"hassio/src/entrypoint.js"
|
|
],
|
|
"sources": [
|
|
"src/**/*",
|
|
"!src/translations/*"
|
|
],
|
|
"lint": {
|
|
"rules": ["polymer-3"],
|
|
"ignoreWarnings": ["could-not-resolve-reference"],
|
|
"filesToIgnore": [
|
|
"**/*.html",
|
|
"**/src/panels/config/js/**/*.js",
|
|
"**/ha-paper-slider.js",
|
|
"**/ha-iconset-svg.js",
|
|
"**/ha-script-editor.js",
|
|
"**/ha-automation-editor.js",
|
|
"**/ha-big-calendar.js"
|
|
]
|
|
},
|
|
"builds": [
|
|
{
|
|
"preset": "es5-bundled"
|
|
},
|
|
{
|
|
"preset": "es6-bundled"
|
|
}
|
|
]
|
|
}
|