{"id":24645308,"url":"https://github.com/creativelive/gulp-diff","last_synced_at":"2025-07-24T13:33:40.580Z","repository":{"id":17233262,"uuid":"20002338","full_name":"creativelive/gulp-diff","owner":"creativelive","description":"gulp plugin for diffing files","archived":false,"fork":false,"pushed_at":"2021-01-19T16:15:26.000Z","size":17,"stargazers_count":7,"open_issues_count":9,"forks_count":10,"subscribers_count":13,"default_branch":"master","last_synced_at":"2025-05-12T20:54:09.265Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/creativelive.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-05-21T00:23:20.000Z","updated_at":"2023-09-08T16:47:45.000Z","dependencies_parsed_at":"2022-09-06T04:02:32.499Z","dependency_job_id":null,"html_url":"https://github.com/creativelive/gulp-diff","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/creativelive/gulp-diff","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativelive%2Fgulp-diff","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativelive%2Fgulp-diff/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativelive%2Fgulp-diff/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativelive%2Fgulp-diff/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/creativelive","download_url":"https://codeload.github.com/creativelive/gulp-diff/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/creativelive%2Fgulp-diff/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266850451,"owners_count":23995072,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-25T14:14:44.831Z","updated_at":"2025-07-24T13:33:40.540Z","avatar_url":"https://github.com/creativelive.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gulp-diff [![](https://travis-ci.org/creativelive/gulp-diff.svg)](https://travis-ci.org/creativelive/gulp-diff)\n\nGulp task to diff files in the stream against a destination.\n\n## Usage\n\nAn example jsbeautify verification task to show diffs from js-beautify\n\n```javascript\n'use strict';\n\nvar gulp = require('gulp');\nvar prettify = require('gulp-jsbeautifier');\nvar diff = require('gulp-diff');\n\ngulp.task('js-beautify', function() {\n  return gulp.src([\n      '!node_modules/**/*.js',\n      '**/*.js'\n    ])\n    .pipe(prettify({\n      config: '.jsbeautifyrc',\n      mode: 'VERIFY_AND_WRITE'\n    }))\n    .pipe(diff(/* 'target directory to diff against', defaults to diff against original source file */))\n    // emit an error on finding diffs\n    .pipe(diff.reporter({ fail: true }));\n});\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreativelive%2Fgulp-diff","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcreativelive%2Fgulp-diff","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcreativelive%2Fgulp-diff/lists"}