Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix builds in travis - update node 6.0->8.0 and semver-stabilize dev dependencies, so maybe they won't change the required node version anymore #18

Merged
merged 4 commits into from
Aug 7, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bower_components/
.vs/
/node_modules
6 changes: 3 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
dist: trusty
sudo: required
node_js: '6'
node_js: '8'
addons:
firefox: latest
apt:
Expand All @@ -10,12 +10,12 @@ addons:
packages:
- google-chrome-stable
before_script:
- npm install -g bower polylint web-component-tester
- npm install
- bower install
- polylint
- chmod -R +x ./bower_components/git-version-tagging
script:
- xvfb-run wct
- xvfb-run npm test
after_success:
- git config credential.helper "store --file=.git/credentials"
- echo "https://${GITHUB_TOKEN}:@github.com" > .git/credentials
Expand Down
11 changes: 11 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"dependencies": {},
"devDependencies": {
"bower": "^1.8.4",
"polylint": "^2.10.4",
"web-component-tester": "^6.7.1"
},
"scripts": {
"test": "wct"
}
}