Skip to content

Commit

Permalink
Drop support for non-active lts and current release
Browse files Browse the repository at this point in the history
Closes #649
  • Loading branch information
xzyfer committed Mar 11, 2018
1 parent c0a2973 commit a2e1a79
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 11 deletions.
10 changes: 6 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
sudo: false

language: node_js

node_js:
- "0.10"
- node
- iojs
sudo: false
- lts/boron
- lts/carbon
- current
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

```
Expand Down Expand Up @@ -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:

Expand Down
9 changes: 3 additions & 6 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "3.1.0",
"description": "Gulp plugin for sass",
"main": "index.js",
"engines": {
"node" : ">=6"
},
"scripts": {
"test": "./node_modules/.bin/mocha test"
},
Expand Down

0 comments on commit a2e1a79

Please sign in to comment.