Skip to content
This repository has been archived by the owner on May 5, 2022. It is now read-only.

Commit

Permalink
BREAKING CHANGE: Dropped support for node 4 and added support for nod…
Browse files Browse the repository at this point in the history
…e 6+ (#88)

- Adds "official" support for node 6+
- Completely drops support for node < 6
  • Loading branch information
cecilia-sanare authored Jul 27, 2017
1 parent da10164 commit 0287436
Show file tree
Hide file tree
Showing 8 changed files with 4,947 additions and 55 deletions.
14 changes: 13 additions & 1 deletion .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
extends: google
env:
browser: true
serviceworker: true
worker: true
globals:
Logging: true
parserOptions:
sourceType: module
rules:
comma-dangle:
- error
Expand All @@ -18,4 +24,10 @@ rules:
arrow-parens: 0
new-cap: 0
camelcase: 0
no-var: 0
no-var: 2
prefer-const: 2
no-confusing-arrow: 2
prefer-arrow-callback: 2
consistent-this:
- error
- window.AuthenticationContext
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
sudo: false
language: node_js
node_js:
- "node"
- "4"
- 6
- 7
- 8
cache:
directories:
- node_modules
Expand Down
Loading

0 comments on commit 0287436

Please sign in to comment.