Skip to content

Commit

Permalink
fix format, update eslint to version 2.6.0, bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
ggkovacs committed Apr 3, 2016
1 parent c29ff35 commit 2f5ad11
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# [gulp](https://github.com/gulpjs/gulp)-sane-watch [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url]
Version: **1.1.1**
Version: **1.1.2**

## Installation

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-sane-watch",
"version": "1.1.1",
"version": "1.1.2",
"description": "Gulp watch with sane",
"main": "index.js",
"scripts": {
Expand Down Expand Up @@ -33,7 +33,7 @@
"engine": "node >= 0.10",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.2.0",
"eslint": "^2.6.0",
"eslint-config-mito": "^2.0.1",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2",
Expand Down
4 changes: 3 additions & 1 deletion test/test.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/* global describe, it, beforeEach, afterEach */
'use strict';

var should = require('chai').should(); // jshint ignore:line
var should = require('chai').should();
var fs = require('fs');
var path = require('path');
var temp = require('temp').track();
Expand Down Expand Up @@ -180,6 +180,7 @@ describe('watch', function() {

var tempFile = path.join(tempDir, 'test.txt');
var glob = path.join(tempDir, '*.txt');

watchers = watch(glob, {
verbose: false,
debounce: 300,
Expand All @@ -203,6 +204,7 @@ describe('watch', function() {
});

this.timeout(0);

allReady(watchers, function() {
var timeout = 1000;

Expand Down

0 comments on commit 2f5ad11

Please sign in to comment.