Skip to content

Commit

Permalink
Re-enabled linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jkphl committed Nov 29, 2015
1 parent 27ebf21 commit 2e6a17b
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 68 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.2.16 Maintenance release (unreleased)
* Updated dev dependencies
* Re-enabled linting (see https://github.com/spalger/gulp-jshint/issues/131)

## 1.2.15 Compatibility release (2015-11-24)
* Compatible with [svg-sprite 1.2.15](https://github.com/jkphl/svg-sprite/tree/v1.2.15)
* Updated dev dependencies
Expand Down
137 changes: 69 additions & 68 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,69 +1,70 @@
{
"name": "gulp-svg-sprite",
"description": "SVG sprites & stacks galore — Gulp plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours",
"version": "1.2.15",
"homepage": "https://github.com/jkphl/gulp-svg-sprite",
"author": "Joschi Kuphal <[email protected]> (https://jkphl.is)",
"repository": {
"type": "git",
"url": "https://github.com/jkphl/gulp-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/jkphl/gulp-svg-sprite/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"index.js",
"CHANGELOG.md"
],
"dependencies": {
"svg-sprite": "~1.2.15",
"through2": "^2.0.0",
"gulp-util": "^3.0.7",
"vinyl": "^1.1.0"
},
"devDependencies": {
"mocha": "*",
"coveralls": "*",
"mocha-lcov-reporter": "*",
"istanbul": "*",
"event-stream": "*",
"should": "~7.1.1",
"glob": "~6.0.1",
"svg2png": "^2.0.0",
"image-diff": "^1.3.0",
"mkdirp": "^0.5.1",
"gulp": "^3.9.0",
"gulp-jshint": "^2.0.0",
"gulp-plumber": "^1.0.1"
},
"keywords": [
"gulpplugin",
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache"
]
}
"name": "gulp-svg-sprite",
"description": "SVG sprites & stacks galore — Gulp plugin wrapping around svg-sprite that reads in a bunch of SVG files, optimizes them and creates SVG sprites and CSS resources in various flavours",
"version": "1.2.15",
"homepage": "https://github.com/jkphl/gulp-svg-sprite",
"author": "Joschi Kuphal <[email protected]> (https://jkphl.is)",
"repository": {
"type": "git",
"url": "https://github.com/jkphl/gulp-svg-sprite.git"
},
"bugs": {
"url": "https://github.com/jkphl/gulp-svg-sprite/issues"
},
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "gulp && istanbul test _mocha --report html -- test/*.js --reporter spec",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage"
},
"files": [
"index.js",
"CHANGELOG.md"
],
"dependencies": {
"svg-sprite": "~1.2.15",
"through2": "^2.0.0",
"gulp-util": "^3.0.7",
"vinyl": "^1.1.0"
},
"devDependencies": {
"coveralls": "*",
"event-stream": "*",
"glob": "~6.0.1",
"gulp": "^3.9.0",
"gulp-jshint": "^2.0.0",
"gulp-plumber": "^1.0.1",
"image-diff": "^1.3.0",
"istanbul": "*",
"jshint": "^2.8.0",
"mkdirp": "^0.5.1",
"mocha": "*",
"mocha-lcov-reporter": "*",
"should": "~7.1.1",
"svg2png": "^2.0.0"
},
"keywords": [
"gulpplugin",
"icon",
"icons",
"svg",
"png",
"sprite",
"spritesheet",
"stack",
"generator",
"css",
"sass",
"less",
"stylus",
"stylesheet",
"inline",
"html",
"vector",
"rwd",
"retina",
"mustache"
]
}

0 comments on commit 2e6a17b

Please sign in to comment.