gulp-json-editor
Advanced tools
Comparing version
@@ -0,1 +1,7 @@ | ||
## 2.4.2 | ||
### Changed | ||
- Update dependencies | ||
## 2.4.1 | ||
@@ -2,0 +8,0 @@ |
@@ -1,3 +0,1 @@ | ||
/* jshint node: true */ | ||
var jsbeautify = require('js-beautify').js_beautify; | ||
@@ -12,3 +10,3 @@ var merge = require('deepmerge'); | ||
/* | ||
create 'editBy' function from 'editor' | ||
* create 'editBy' function from 'editor' | ||
*/ | ||
@@ -32,3 +30,3 @@ var editBy; | ||
/* | ||
js-beautify option | ||
* js-beautify options | ||
*/ | ||
@@ -38,3 +36,3 @@ jsbeautifyOptions = jsbeautifyOptions || {}; | ||
/* | ||
create through object and return it | ||
* create through object and return it | ||
*/ | ||
@@ -84,3 +82,2 @@ return through.obj(function (file, encoding, callback) { | ||
}); | ||
}; |
{ | ||
"name": "gulp-json-editor", | ||
"version": "2.4.1", | ||
"version": "2.4.2", | ||
"description": "A gulp plugin to edit JSON objects", | ||
@@ -15,3 +15,3 @@ "license": "MIT", | ||
"dependencies": { | ||
"deepmerge": "^2.1.0", | ||
"deepmerge": "^2.1.1", | ||
"detect-indent": "^5.0.0", | ||
@@ -24,5 +24,5 @@ "js-beautify": "^1.7.5", | ||
"gulp": "^4.0.0", | ||
"mocha": "^5.1.1", | ||
"mocha": "^5.2.0", | ||
"should": "^13.2.1", | ||
"vinyl": "^2.1.0" | ||
"vinyl": "^2.2.0" | ||
}, | ||
@@ -29,0 +29,0 @@ "engines": { |
# gulp-json-editor | ||
[](https://www.npmjs.com/package/gulp-json-editor) | ||
[](https://travis-ci.org/rejas/gulp-json-editor) | ||
[](https://travis-ci.org/rejas/gulp-json-editor) [](https://greenkeeper.io/) | ||
@@ -6,0 +6,0 @@ gulp-json-editor is a [gulp](https://github.com/gulpjs/gulp) plugin to edit JSON objects. |
@@ -1,8 +0,3 @@ | ||
/* jshint node: true */ | ||
/* global it */ | ||
var json = require('../'); | ||
var gulp = require("gulp"); | ||
require('should'); | ||
require('mocha'); | ||
var gulp = require('gulp'); | ||
@@ -25,3 +20,3 @@ it('should modify property of JSON object (by function editor)', function(done) { | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -50,3 +45,3 @@ done(); | ||
' "description": "this is test"\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -73,3 +68,3 @@ done(); | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -97,3 +92,3 @@ done(); | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -122,3 +117,3 @@ done(); | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -145,3 +140,3 @@ done(); | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -174,3 +169,3 @@ done(); | ||
' "description": "this is test"\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -177,0 +172,0 @@ done(); |
@@ -1,8 +0,3 @@ | ||
/* jshint node: true */ | ||
/* global it */ | ||
var json = require('../'); | ||
var gulp = require("gulp"); | ||
require('should'); | ||
require('mocha'); | ||
var gulp = require('gulp'); | ||
@@ -24,3 +19,3 @@ it('should modify property of JSON object (by object editor)', function(done) { | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -48,3 +43,3 @@ done(); | ||
' "description": "this is test"\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -73,3 +68,3 @@ done(); | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -99,3 +94,3 @@ done(); | ||
' }\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -129,3 +124,3 @@ done(); | ||
' "description": "this is test"\n' + | ||
'}' | ||
'}'; | ||
file.contents.toString().should.eql(expected); | ||
@@ -132,0 +127,0 @@ done(); |
@@ -1,4 +0,1 @@ | ||
/* jshint node: true */ | ||
/* global it */ | ||
var jedit = require('../'); | ||
@@ -8,3 +5,2 @@ var fs = require('fs'); | ||
var should = require('should'); | ||
require('mocha'); | ||
@@ -11,0 +7,0 @@ it('should raise error when missing option', function(done) { |
@@ -1,8 +0,3 @@ | ||
/* jshint node: true */ | ||
/* global it */ | ||
var json = require('../'); | ||
var gulp = require("gulp"); | ||
require('should'); | ||
require('mocha'); | ||
var gulp = require('gulp'); | ||
@@ -9,0 +4,0 @@ it('should pass-through second argument to js-beautify', function(done) { |
@@ -0,0 +0,0 @@ { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
19292
-79.61%11
-8.33%449
-3.44%Updated