Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
31 changes: 31 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
language: node_js
node_js:
- "10"

dist: trusty
sudo: false

addons:
chrome: stable

cache:
directories:
- ./node_modules

env:
global:
# See https://git.io/vdao3 for details.
- JOBS=1

branches:
only:
- master
# npm version tags
- /^v\d+\.\d+\.\d+/

install:
- npm install

script:
- npm run test -- --no-watch --no-progress --browsers=ChromeHeadless
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ It provides additional functionality, on top of Shepherd, as well.

## Compatibility

* Angular 8: 0.5.0
* Angular 9: 0.6.0
* Angular 10: 0.7.0

This has not been tested in anything but Angular 8+. It may or may not work in previous versions or subsequent versions
of Angular. We would love to support multiple versions, if people with more Angular knowledge would be willing to help us out!

Expand Down
3 changes: 1 addition & 2 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@
"node_modules/shepherd.js/dist/css/shepherd.css",
"projects/shepherd-tester/src/styles.css"
],
"scripts": [],
"es5BrowserSupport": true
"scripts": []
},
"configurations": {
"production": {
Expand Down
Loading