| OLD | NEW |
| 1 BOWER_DIR=app/third_party/bower_components | 1 BOWER_DIR=app/third_party/bower_components |
| 2 | 2 |
| 3 # The list of files we want to go into core.js, which is concat'd and | 3 # The list of files we want to go into core.js, which is concat'd and |
| 4 # minified. These files should be either present in the project, brought | 4 # minified. These files should be either present in the project, brought |
| 5 # into third_party/bower_compoents via bower, or in node_modules. | 5 # into third_party/bower_compoents via bower, or in node_modules. |
| 6 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ | 6 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ |
| 7 $(BOWER_DIR)/webcomponentsjs/webcomponents.min.js \ | 7 $(BOWER_DIR)/webcomponentsjs/webcomponents.min.js \ |
| 8 ../res/js/common.js | 8 ../res/js/common.js |
| 9 | 9 |
| 10 BOWER_DIR=app/third_party/bower_components | 10 BOWER_DIR=app/third_party/bower_components |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 debug: clean_webtools debug_core_js debug_elements_html | 39 debug: clean_webtools debug_core_js debug_elements_html |
| 40 | 40 |
| 41 # Build serving CSS from input CSS. | 41 # Build serving CSS from input CSS. |
| 42 res/css/core.css: node_modules/lastupdate res/css/main.css | 42 res/css/core.css: node_modules/lastupdate res/css/main.css |
| 43 ./node_modules/.bin/autoprefixer res/css/main.css -o res/css/core.css | 43 ./node_modules/.bin/autoprefixer res/css/main.css -o res/css/core.css |
| 44 | 44 |
| 45 node_modules: package.json | 45 node_modules: package.json |
| 46 npm install | 46 npm install |
| 47 | 47 |
| 48 .PHONY: all | 48 .PHONY: all |
| 49 all: skiacorrectness correctness_migratedb web | 49 all: skiacorrectness correctness_migratedb |
| 50 | 50 |
| 51 include ../webtools/webtools.mk | 51 include ../webtools/webtools.mk |
| OLD | NEW |