mirror of
https://github.com/home-assistant/frontend.git
synced 2026-08-26 16:15:52 +01:00
* Expand sensor entity constants and add device classes * Updated constants * Fix typo * Fix name * Restore part original generated script comment * Add convertible units and fix null type * Fix type * Update constants * Fix import SENSOR_NUMERIC_DEVICE_CLASSES
12 lines
270 B
Bash
Executable File
12 lines
270 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Safe bash settings
|
|
# -e Exit on command fail
|
|
# -u Exit on unset variable
|
|
# -o pipefail Exit if piped command has error code
|
|
set -eu -o pipefail
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
./node_modules/.bin/gulp gen-sensor-entity-constants
|