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

* Review Docker management ( linked with #934 ) * fix comment by @balloob * Explicit remove of package-lock.json * moved on feature branch, merge docker scripts, added documetation * Used alphine as requested by @balloob on https://github.com/home-assistant/home-assistant-polymer/pull/947 and followed the @mcspr comment https://github.com/home-assistant/home-assistant-polymer/issues/934 * Remove package-lock from gitignore, we don't use npm * Update for new build instructions
15 lines
232 B
Bash
15 lines
232 B
Bash
#!/bin/bash
|
|
# Docker entry point inspired by travis build and script/build_frontend
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
# Build the frontend but not used the npm run build
|
|
/bin/bash script/build_frontend
|
|
|
|
# TEST
|
|
npm run test
|
|
|
|
#
|
|
#xvfb-run wct
|