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

Polymer 3 #137

Open
wants to merge 17 commits into
base: master
Choose a base branch
from
Open
12 changes: 0 additions & 12 deletions .babelrc

This file was deleted.

9 changes: 1 addition & 8 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,5 @@ indent_size = 4
insert_final_newline = true
trim_trailing_whitespace = true

[{*.json,.babelrc,.travis.yml}]
[*{.json,.yml,.md,.html}]
indent_style = space
indent_size = 2

[*.md]
indent_style = space

[*.html]
indent_size = 2
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bower_components
coverage
node_modules
coverage/
node_modules/
*.log
.DS_Store
.idea/
8 changes: 2 additions & 6 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
bower_components
coverage
test
.babelrc
coverage/
test/
.editorconfig
.gitignore
.npmignore
.travis.yml
gulpfile.babel.js
wct.conf.json
4 changes: 4 additions & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
*.html
*.json
*.yml
.*
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"singleQuote": true
}
27 changes: 15 additions & 12 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,27 @@ sudo: true

language: node_js

env:
- SELENIUM_OVERRIDES_CONFIG=$TRAVIS_BUILD_DIR/package.json

node_js: stable

addons:
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable
firefox: latest
apt:
sources:
- google-chrome
packages:
- google-chrome-stable

cache:
yarn: true
yarn: false

before_script:
- bower install
# fix wct-local bug => read config from env var
- sed -i.bak "s/'..\/package.json'/process.env.SELENIUM_OVERRIDES_CONFIG/g" node_modules/wct-local/lib/selenium.js
# check the patched js
- cat node_modules/wct-local/lib/selenium.js

script:
- xvfb-run npm test

after_script:
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
- yarn test
6 changes: 6 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"editor.formatOnSave": true,
"[html]": {
"editor.formatOnSave": false
}
}
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017 Christopher Turner
Copyright (c) 2018 Christopher Turner

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
37 changes: 0 additions & 37 deletions bower.json

This file was deleted.

123 changes: 0 additions & 123 deletions demo/async.html

This file was deleted.

84 changes: 0 additions & 84 deletions demo/behaviors.html

This file was deleted.

Loading