Fix travis (#76)

This commit is contained in:
Paulus Schoutsen 2016-07-21 23:09:22 -07:00 committed by GitHub
parent fa47838931
commit aedafa7d5e
2 changed files with 6 additions and 1 deletions

View File

@ -1,2 +1,5 @@
sudo: false
language: node_js
install:
- npm install
- bower install

View File

@ -22,7 +22,9 @@
"watch_ru_all": "npm run watch_ru_core | npm run watch_ru_demo",
"watch_ru_core": "rollup --config rollup/core.js --watch",
"watch_ru_demo": "rollup --config rollup/demo.js --watch",
"test": "eslint src panels --ext html && ls -1 src/**/*.html panels/**/*.html | xargs polymer lint --input"
"lint_js": "eslint src panels --ext html",
"lint_html": "ls -1 src/**/*.html panels/**/*.html | xargs polymer lint --input",
"test": "npm run lint_js && npm run lint_html"
},
"author": "Paulus Schoutsen <Paulus@PaulusSchoutsen.nl> (http://paulusschoutsen.nl)",
"license": "MIT",