{"id":18926796,"url":"https://github.com/ladjs/gulp-haschanged-deps-async","last_synced_at":"2026-02-25T06:02:34.807Z","repository":{"id":42367821,"uuid":"123647635","full_name":"ladjs/gulp-haschanged-deps-async","owner":"ladjs","description":"Deep dependency recursive modified time comparison to ensure your files only re-compile when needed","archived":false,"fork":false,"pushed_at":"2024-09-06T02:52:57.000Z","size":239,"stargazers_count":2,"open_issues_count":4,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-10-26T08:36:38.261Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ladjs.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2018-03-03T01:14:02.000Z","updated_at":"2022-03-17T19:21:33.000Z","dependencies_parsed_at":"2025-04-16T08:37:53.413Z","dependency_job_id":null,"html_url":"https://github.com/ladjs/gulp-haschanged-deps-async","commit_stats":null,"previous_names":["niftylettuce/gulp-haschanged-deps-async"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/ladjs/gulp-haschanged-deps-async","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladjs%2Fgulp-haschanged-deps-async","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladjs%2Fgulp-haschanged-deps-async/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladjs%2Fgulp-haschanged-deps-async/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladjs%2Fgulp-haschanged-deps-async/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ladjs","download_url":"https://codeload.github.com/ladjs/gulp-haschanged-deps-async/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladjs%2Fgulp-haschanged-deps-async/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29811863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-25T05:36:42.804Z","status":"ssl_error","status_checked_at":"2026-02-25T05:36:31.934Z","response_time":61,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":"2024-11-08T11:17:12.225Z","updated_at":"2026-02-25T06:02:34.786Z","avatar_url":"https://github.com/ladjs.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# gulp-haschanged-deps-async\n\n[![build status](https://img.shields.io/travis/niftylettuce/gulp-haschanged-deps-async.svg)](https://travis-ci.org/niftylettuce/gulp-haschanged-deps-async)\n[![code coverage](https://img.shields.io/codecov/c/github/niftylettuce/gulp-haschanged-deps-async.svg)](https://codecov.io/gh/niftylettuce/gulp-haschanged-deps-async)\n[![code style](https://img.shields.io/badge/code_style-XO-5ed9c7.svg)](https://github.com/sindresorhus/xo)\n[![styled with prettier](https://img.shields.io/badge/styled_with-prettier-ff69b4.svg)](https://github.com/prettier/prettier)\n[![made with lass](https://img.shields.io/badge/made_with-lass-95CC28.svg)](https://lass.js.org)\n[![license](https://img.shields.io/github/license/niftylettuce/gulp-haschanged-deps-async.svg)](LICENSE)\n\n\u003e Provides a hasChanged function for use with gulp-changed to check mtimes of a file's dependencies.\n\nThis package is a modern and updated fork of [gulp-haschanged-deps](https://github.com/mattpowell/gulp-haschanged-deps) and as such I've retained the original author's licensing as it was inspired by his work.\n\n\n## Table of Contents\n\n* [Install](#install)\n* [Usage](#usage)\n* [Contributors](#contributors)\n* [License](#license)\n\n\n## Install\n\n[npm][]:\n\n```sh\nnpm install gulp-haschanged-deps-async\n```\n\n[yarn][]:\n\n```sh\nyarn add gulp-haschanged-deps-async\n```\n\n\n## Usage\n\n```js\nconst gulp = require('gulp');\nconst filter = require('gulp-custom-filter');\nconst hasChangedDepsAsync = require('gulp-haschanged-deps-async');\nconst less = require('gulp-less');\n\ngulp.task('less', () =\u003e {\n  return (\n    gulp\n      .src(['less/**/*.less'])\n      .pipe(\n        filter(\n          hasChangedDepsAsync('css', {\n            // the cwd option is for resolving paths to packages\n            // and it defaults to the directory process is running from\n            cwd: process.cwd(),\n            // an optional extension you can pass if the file extension changes\n            extension: '.css',\n            // this is optional option, but useful for specifying directly\n            // so that no auto-detection is required by `precinct`\n            // \u003chttps://github.com/dependents/node-precinct\u003e\n            precinct: {\n              type: 'less'\n            }\n          })\n        )\n      )\n      .pipe(sourcemaps.init())\n      .pipe(less())\n      .pipe(sourcemaps.write('.'))\n      .pipe(gulp.dest('css'))\n  );\n});\n```\n\n\n## Contributors\n\n| Name           | Website                    |\n| -------------- | -------------------------- |\n| **Nick Baugh** | \u003chttp://niftylettuce.com/\u003e |\n\n\n## License\n\n[MIT](LICENSE) © Matt Powell\n\n\n## \n\n[npm]: https://www.npmjs.com/\n\n[yarn]: https://yarnpkg.com/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fladjs%2Fgulp-haschanged-deps-async","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fladjs%2Fgulp-haschanged-deps-async","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fladjs%2Fgulp-haschanged-deps-async/lists"}