From 1b7298939d4887558255283ea150aa05a48ff718 Mon Sep 17 00:00:00 2001 From: Paris Holley Date: Mon, 26 Aug 2019 12:27:45 -0400 Subject: [PATCH 1/2] library doesn't build on latest versions --- .nvmrc | 1 + .travis.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..45a4fb7 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +8 diff --git a/.travis.yml b/.travis.yml index 53b2dae..1746481 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,10 @@ language: node_js node_js: - - "node" + - 8 install: - "npm install" script: - - "gulp test:travis" \ No newline at end of file + - "gulp test:travis" From 8803e248a0192d90072ac6ba9e0135bd3d40dfaf Mon Sep 17 00:00:00 2001 From: Paris Holley Date: Mon, 26 Aug 2019 12:41:56 -0400 Subject: [PATCH 2/2] sauce does not appear to be configured on travis anymore --- gulpfile.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 26e2e06..8362832 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -232,8 +232,8 @@ gulp.task('test:mocha.es6', function () { function runMocha(srcPath) { return gulp.src(srcPath) - .pipe($.spawnMocha({ - ui: 'bdd', + .pipe($.spawnMocha({ + ui: 'bdd', reporter: 'spec', env: {'NODE_PATH': './.tmp/src'} })) @@ -289,5 +289,5 @@ gulp.task('release', ['default'], function (cb) { }); gulp.task('test:travis', ['build'], function (cb) { - runSequence('test:sauce', 'test:mocha', 'test:mocha.es6', cb); + runSequence('test:mocha', 'test:mocha.es6', cb); });