Skip to content

Commit

Permalink
Deprecate node version 8 to fix travis test failures (#609)
Browse files Browse the repository at this point in the history
* Audit package-lock

* Deprecate node version 8 to prevent travis failures

* Drop node 8

* update karma conf

* Bump package.json version number
  • Loading branch information
sashadev-sky committed Apr 15, 2020
1 parent 6693469 commit 0e6fcd6
Show file tree
Hide file tree
Showing 7 changed files with 2,514 additions and 3,193 deletions.
8 changes: 7 additions & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
{
"esversion": 6
"esversion": 6,
"expr": true,
"node": true,
"browser": true,
"mocha": true,
"phantom": true,
"typed": true
}
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: node_js
node_js:
- '8'
- '10'
- '12'
before_script:
- npm install leaflet --no-save
- npm run build
Expand Down
10 changes: 4 additions & 6 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,19 +14,17 @@ module.exports = function(grunt) {
options: {
node: true,
browser: true,
esnext: true,
esversion: 6,
mocha: true,
phantom: true,
typed: true,
bitwise: true,
curly: true,
eqeqeq: true,
immed: true,
indent: 4,
latedef: true,
newcap: true,
noarg: true,
regexp: true,
undef: true,
trailing: true,
smarttabs: true,
globals: {
L: false,
$: false,
Expand Down
Loading

0 comments on commit 0e6fcd6

Please sign in to comment.