Skip to content

Commit dfefda3

Browse files
committed
update deps, clean files
1 parent 18d0880 commit dfefda3

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Diff for: .travis.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
sudo: false
2+
13
language: node_js
24
node_js:
35
- "0.10"
4-
- "0.12"
5-
- "5"
66
- "6"
7+
- "7"

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
> A [LESS](http://lesscss.org/) plugin for Gulp
55
66
[![NPM Version](https://img.shields.io/npm/v/gulp-less.svg)](https://www.npmjs.com/package/gulp-less)
7-
[![Build Status](https://img.shields.io/travis/plus3network/gulp-less.svg)](https://travis-ci.org/plus3network/gulp-less)
7+
[![Build Status](https://img.shields.io/travis/stevelacy/gulp-less.svg)](https://travis-ci.org/stevelacy/gulp-less)
88

99
## Information
1010

Diff for: index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ var less = accord.load('less');
1111
module.exports = function (options) {
1212
// Mixes in default options.
1313
var opts = assign({}, {
14-
compress: false,
15-
paths: []
16-
}, options);
14+
compress: false,
15+
paths: []
16+
}, options);
1717

1818
return through2.obj(function(file, enc, cb) {
1919
if (file.isNull()) {

Diff for: package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gulp-less",
3-
"version": "3.3.0",
3+
"version": "3.3.1",
44
"description": "Less for Gulp",
55
"main": "index.js",
66
"scripts": {
@@ -21,16 +21,16 @@
2121
"author": "Chris Cowan",
2222
"license": "MIT",
2323
"dependencies": {
24-
"accord": "^0.26.3",
24+
"accord": "^0.27.3",
2525
"gulp-util": "^3.0.7",
2626
"less": "2.6.x || ^2.7.1",
2727
"object-assign": "^4.0.1",
2828
"through2": "^2.0.0",
2929
"vinyl-sourcemaps-apply": "^0.2.0"
3030
},
3131
"devDependencies": {
32-
"jshint": "^2.4.1",
33-
"mocha": "^3.0.2",
34-
"should": "^11.1.0"
32+
"jshint": "^2.9.4",
33+
"mocha": "^3.4.2",
34+
"should": "^11.2.0"
3535
}
3636
}

Diff for: test/mocha.opts

-1
This file was deleted.

0 commit comments

Comments
 (0)