| OLD | NEW |
| 1 # The list of files we want to go into core.js, which is concat'd and | 1 # The list of files we want to go into core.js, which is concat'd and |
| 2 # minified. These files should be either present in the project, brought | 2 # minified. These files should be either present in the project, brought |
| 3 # into third_party/bower_compoents via bower, or in node_modules. | 3 # into third_party/bower_compoents via bower, or in node_modules. |
| 4 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ | 4 CORE_SOURCE_FILES = node_modules/native-promise-only/npo.js \ |
| 5 third_party/bower_components/webcomponentsjs/webcomponents.min.js \ | 5 third_party/bower_components/webcomponentsjs/webcomponents.min.js \ |
| 6 ../res/js/common.js | 6 ../res/js/common.js |
| 7 | 7 |
| 8 BOWER_DIR=third_party/bower_components | 8 BOWER_DIR=third_party/bower_components |
| 9 | 9 |
| 10 default: core_js elements_html | 10 default: core_js elements_html |
| 11 go install -v ./go/pull | 11 go install -v ./go/pull |
| 12 go install -v ./go/pulld |
| 12 go install -v ./go/push | 13 go install -v ./go/push |
| 13 | 14 |
| 14 release: default | 15 release: default |
| 15 ./build_push_release | 16 ./build_push_release |
| 16 | 17 |
| 17 pull_release: default | 18 pull_release: default |
| 18 ./build_pull_release | 19 ./build_pull_release |
| 19 | 20 |
| 20 include ../webtools/webtools.mk | 21 include ../webtools/webtools.mk |
| OLD | NEW |