From 9a8a8797ca06f14f30fb7710247a446730f3271e Mon Sep 17 00:00:00 2001 From: xzyfer Date: Sun, 11 Mar 2018 21:26:30 +1100 Subject: [PATCH] Drop support for non-active lts and current release Closes #649 --- .travis.yml | 12 +++++++----- README.md | 8 +++++++- appveyor.yml | 9 +++------ package.json | 3 +++ 4 files changed, 20 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 52b9128..15f82ea 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,8 @@ -language: node_js -node_js: - - "0.10" - - node - - iojs sudo: false + +language: node_js + +node_js: + - lts/boron + - lts/carbon + - current diff --git a/README.md b/README.md index 2eaec57..15f2960 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,12 @@ Sass plugin for [Gulp](https://github.com/gulpjs/gulp). **_Before filing an issue, please make sure you have [Updated to the latest Gulp Sass](https://github.com/dlmanning/gulp-sass/wiki/Update-to-the-latest-Gulp-Sass) and have gone through our [Common Issues and Their Fixes](https://github.com/dlmanning/gulp-sass/wiki/Common-Issues-and-Their-Fixes) section._** +# Support + +Only [Active LTS and Current releases][1] are supported. + +[1]: https://github.com/nodejs/Release#release-schedule + # Install ``` @@ -52,7 +58,7 @@ gulp.task('sass:watch', function () { ## Options -Pass in options just like you would for [`node-sass`](https://github.com/sass/node-sass#options); they will be passed along just as if you were using `node-sass`. Except for the `data` option which is used by gulp-sass internally. Using the `file` option is also unsupported and results in undefined behaviour that may change without notice. +Pass in options just like you would for [`node-sass`](https://github.com/sass/node-sass#options); they will be passed along just as if you were using `node-sass`. Except for the `data` option which is used by gulp-sass internally. Using the `file` option is also unsupported and results in undefined behaviour that may change without notice. For example: diff --git a/appveyor.yml b/appveyor.yml index 1af19bc..83b2c9d 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -11,12 +11,9 @@ platform: environment: matrix: - - nodejs_version: 0.10 - - nodejs_version: 0.12 - - nodejs_version: 4 - - nodejs_version: 6 - - nodejs_version: 8 - - nodejs_version: 9 + - nodejs_version: lts/boron + - nodejs_version: lts/carbon + - nodejs_version: current install: - ps: Install-Product node $env:nodejs_version $env:platform diff --git a/package.json b/package.json index bbe747d..a2a36ba 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,9 @@ "version": "3.2.1", "description": "Gulp plugin for sass", "main": "index.js", + "engines": { + "node": ">=6" + }, "scripts": { "test": "./node_modules/.bin/mocha test" },