-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
US94115 Hybridization (#8) [increment major]?
* Hybridization changes * PR feedback * Add regular ol' resolution for webcomponentsjs * US94115 Add Sauce credentials Also cleaned up .travis.yml a bit to match what we're doing elsewhere.
- Loading branch information
1 parent
06cb265
commit 1313a7d
Showing
10 changed files
with
89 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": "brightspace/polymer-config" | ||
} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,4 @@ | ||
# See http://help.github.com/ignore-files/ for more about ignoring files. | ||
|
||
# dependencies | ||
node_modules | ||
bower_components | ||
|
||
# testing | ||
coverage | ||
|
||
# production | ||
build | ||
|
||
# misc | ||
.DS_Store | ||
.env | ||
npm-debug.log | ||
yarn.lock | ||
public/polymer-components.vulcanized.html | ||
bower_components* | ||
bower-* | ||
node_modules | ||
package-lock.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,9 @@ | ||
language: node_js | ||
node_js: stable | ||
sudo: false | ||
addons: | ||
firefox: latest | ||
apt: | ||
packages: | ||
- oracle-java8-installer | ||
- oracle-java8-set-default | ||
before_script: | ||
- npm run test:lint:js | ||
- npm run test:lint:wc | ||
node_js: node | ||
script: | ||
- xvfb-run polymer test | ||
- npm run lint | ||
- polymer test --skip-plugin local | ||
env: | ||
global: | ||
- SAUCE_USERNAME: Desire2Learn | ||
- secure: hJJ7bKNTAKw/DksAP7TuZo9FZIcdCidx1CWvzEvJpKwEX6F2NGHOKRwxboZNKO9vRw9XXkxjzSFM/G2TPnyThBlog5B9FvqLNXMu0uItvOGf9kRv3bDFPjbF6tUiKECdDre+4gx/S4wXGAmMJbJ1D4odVpA6pPghd1zPqZ1bR23jOah9VjOFWPjxwMupaIJ8qXD15H3Yagu/a39zK6NE02EvqS6Bd/UXmseR9L9pLzM22m5aTCUrh7WqmeIi4CRFLWRWjH62zpQveE4Nk6zZVfc6Zz4ZQ7MSgXnk0YX+y6d39NGxLNX9v2H2tkk73jY1z12Oqr9b8A1uLWvqMNbmrDxrfgu0I2f/yTENjshjY9fY7mS8kjc5EcMX7EraM0cHWL2NipauNZZLGxcPjyxCJT2DoaNi/r0vdq8K7fu8DFMPu5wQKjmC8OApRblWRa8ui9mp2g11rxpGXETVR+PzcRypPiPYWLeV0nolxgxzTlPergM/BK6jVKK5syTSr9zicYVL8a34dcXEst6AJN9PvtDfr7R1w2PUSDg1QNgfQnIlRLYqaq1QbD/v3Fd7SSEha1PK/ehdPF6UZ4zv6+Vxpmcvq1qOd9RTXc0sWw7MIjVfvvgglVSEW+UWpfOBCDjN5i0iTQHU1b6NTFVVMR4XjzlZmDXmAA/rvMfvMyFLgz0= |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,41 @@ | ||
{ | ||
"plugins":{ | ||
"local":{ | ||
"browsers":["firefox"] | ||
} | ||
} | ||
"plugins": { | ||
"local": { | ||
"browsers": ["chrome"] | ||
}, | ||
"sauce": { | ||
"browsers": [ | ||
{ | ||
"browserName": "chrome", | ||
"platform": "OS X 10.12", | ||
"version": "" | ||
}, | ||
{ | ||
"browserName": "chrome", | ||
"platform": "Windows 10", | ||
"version": "" | ||
}, | ||
{ | ||
"browserName": "firefox", | ||
"platform": "OS X 10.12", | ||
"version": "" | ||
}, | ||
{ | ||
"browserName": "firefox", | ||
"platform": "Windows 10", | ||
"version": "" | ||
}, | ||
{ | ||
"browserName": "safari", | ||
"platform": "OS X 10.12", | ||
"version": "" | ||
}, | ||
{ | ||
"browserName": "microsoftedge", | ||
"platform": "Windows 10", | ||
"version": "" | ||
} | ||
] | ||
} | ||
} | ||
} |