| OLD | NEW |
| 1 # Copyright 2016 The LUCI Authors. All rights reserved. | 1 # Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 # Use of this source code is governed by the Apache v2.0 license that can be | 2 # Use of this source code is governed by the Apache v2.0 license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 # Set up the local directory to run the demo pages. | 5 # Set up the local directory to run the demo pages. |
| 6 | 6 |
| 7 default: | 7 default: |
| 8 bower install | 8 bower install |
| 9 | 9 |
| 10 # Run a local HTTP server for the demo pages. | 10 # Run a local HTTP server for the demo pages. |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 -wget -nc --output-document=./res/imp/taskpage/new-task-demo.json https:
//raw.githubusercontent.com/wiki/luci/luci-py/new-task-demo.json | 27 -wget -nc --output-document=./res/imp/taskpage/new-task-demo.json https:
//raw.githubusercontent.com/wiki/luci/luci-py/new-task-demo.json |
| 28 | 28 |
| 29 -wget -nc --output-document=./res/imp/index/index-overview-stats-demo.js
on https://raw.githubusercontent.com/wiki/luci/luci-py/index-overview-stats-demo
.json | 29 -wget -nc --output-document=./res/imp/index/index-overview-stats-demo.js
on https://raw.githubusercontent.com/wiki/luci/luci-py/index-overview-stats-demo
.json |
| 30 -wget -nc --output-document=./res/imp/stats/stats-overview-demo.json htt
ps://raw.githubusercontent.com/wiki/luci/luci-py/stats/stats-overview-demo.json | 30 -wget -nc --output-document=./res/imp/stats/stats-overview-demo.json htt
ps://raw.githubusercontent.com/wiki/luci/luci-py/stats/stats-overview-demo.json |
| 31 | 31 |
| 32 node_modules/.bin/http-server -p 9050 | 32 node_modules/.bin/http-server -p 9050 |
| 33 | 33 |
| 34 .PHONY: clean | 34 .PHONY: clean |
| 35 clean: | 35 clean: |
| 36 rm -rf ./build/* | 36 rm -rf ./build/* |
| 37 » mkdir ./build/js | 37 » mkdir -p ./build/js |
| 38 | 38 |
| 39 .PHONY: vulcanize | 39 .PHONY: vulcanize |
| 40 vulcanize: clean default common_strings | 40 vulcanize: clean default common_strings |
| 41 ./node_modules/.bin/vulcanize --inline-css --inline-scripts --strip-comm
ents --abspath=./ elements.html | ./node_modules/.bin/html-minifier -o ./build/e
lements.html --minify-css --minify-js --remove-comments --collapse-whitespace --
conservative-collapse | 41 ./node_modules/.bin/vulcanize --inline-css --inline-scripts --strip-comm
ents --abspath=./ elements.html | ./node_modules/.bin/html-minifier -o ./build/e
lements.html --minify-css --minify-js --remove-comments --collapse-whitespace --
conservative-collapse |
| 42 cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js
./build/js/common-strings.js ./node_modules/skia-common-js/common.js ./res/js/c
ommon.js ./res/js/alias.js | ./node_modules/.bin/uglifyjs -o ./build/js/js.js | 42 cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js
./build/js/common-strings.js ./node_modules/skia-common-js/common.js ./res/js/c
ommon.js ./res/js/alias.js | ./node_modules/.bin/uglifyjs -o ./build/js/js.js |
| 43 | 43 |
| 44 .PHONY: debug_build | 44 .PHONY: debug_build |
| 45 debug_build: clean default common_strings | 45 debug_build: clean default common_strings |
| 46 cp elements.html ./build/elements.html | 46 cp elements.html ./build/elements.html |
| 47 cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js
./build/js/common-strings.js ./node_modules/skia-common-js/common.js ./res/js/c
ommon.js ./res/js/alias.js > ./build/js/js.js | 47 cat ./res/imp/bower_components/webcomponentsjs/webcomponents-lite.min.js
./build/js/common-strings.js ./node_modules/skia-common-js/common.js ./res/js/c
ommon.js ./res/js/alias.js > ./build/js/js.js |
| (...skipping 26 matching lines...) Expand all Loading... |
| 74 local_deploy: vulcanize | 74 local_deploy: vulcanize |
| 75 ../tools/start_servers.py | 75 ../tools/start_servers.py |
| 76 | 76 |
| 77 .PHONY: debug_local_deploy | 77 .PHONY: debug_local_deploy |
| 78 debug_local_deploy: debug_build | 78 debug_local_deploy: debug_build |
| 79 ../tools/start_servers.py | 79 ../tools/start_servers.py |
| 80 | 80 |
| 81 .PHONY: debug_dev_deploy | 81 .PHONY: debug_dev_deploy |
| 82 debug_dev_deploy: debug_build | 82 debug_dev_deploy: debug_build |
| 83 ../tools/gae upl -A chromium-swarm-dev | 83 ../tools/gae upl -A chromium-swarm-dev |
| OLD | NEW |