{"id":14965899,"url":"https://github.com/warapitiya/gulp-yarn","last_synced_at":"2025-10-25T13:30:54.915Z","repository":{"id":37622937,"uuid":"71627347","full_name":"warapitiya/gulp-yarn","owner":"warapitiya","description":"Automatically install node modules using Yarn. :heart_eyes_cat:","archived":false,"fork":false,"pushed_at":"2023-07-18T04:13:15.000Z","size":457,"stargazers_count":22,"open_issues_count":3,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-09T01:07:22.685Z","etag":null,"topics":["gulp","gulp-plugin","yarn","yarn-packages"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/warapitiya.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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}},"created_at":"2016-10-22T08:42:23.000Z","updated_at":"2023-07-22T12:39:48.000Z","dependencies_parsed_at":"2024-06-18T16:56:04.868Z","dependency_job_id":"b8de2990-89f1-442e-b127-fd6a8be43179","html_url":"https://github.com/warapitiya/gulp-yarn","commit_stats":{"total_commits":87,"total_committers":10,"mean_commits":8.7,"dds":0.5517241379310345,"last_synced_commit":"3530196012305de8b9c3376e5a06e806f381a6b4"},"previous_names":[],"tags_count":14,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/warapitiya%2Fgulp-yarn","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/warapitiya%2Fgulp-yarn/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/warapitiya%2Fgulp-yarn/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/warapitiya%2Fgulp-yarn/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/warapitiya","download_url":"https://codeload.github.com/warapitiya/gulp-yarn/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":238147556,"owners_count":19424283,"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","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":["gulp","gulp-plugin","yarn","yarn-packages"],"created_at":"2024-09-24T13:35:32.385Z","updated_at":"2025-10-25T13:30:49.567Z","avatar_url":"https://github.com/warapitiya.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://github.com/warapitiya/gulp-yarn\"\u003e\n    \u003cimg alt=\"Gulp-Yarn\" src=\"https://github.com/warapitiya/assets/blob/master/gulp-yarn.png?raw=true\" width=\"546\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  Automatically install node modules using Yarn.\n\u003c/p\u003e\n\u003cp  align=\"center\"\u003e\nBecause we \u003cimg alt=\"emoji=heart\" src=\"https://github.com/warapitiya/assets/blob/master/heart-emoji.png?raw=true\" width=\"15\"\u003e Yarn!\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://travis-ci.com/warapitiya/gulp-yarn\"\u003e\u003cimg alt=\"Travis Status\" src=\"https://travis-ci.org/warapitiya/gulp-yarn.svg?branch=master\"\u003e\u003c/a\u003e\n  \u003ca href='https://coveralls.io/github/warapitiya/gulp-yarn?branch=main'\u003e\u003cimg src='https://coveralls.io/repos/github/warapitiya/gulp-yarn/badge.svg?branch=main' alt='Coverage Status' /\u003e\u003c/a\u003e\n  \u003ca href=\"https://www.npmjs.com/package/gulp-yarn\"\u003e\u003cimg src=\"https://img.shields.io/npm/v/gulp-yarn.svg\" alt=\"npm version\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://www.npmjs.com/package/gulp-yarn\"\u003e\u003cimg src=\"https://img.shields.io/npm/dt/gulp-yarn.svg\" alt=\"npm downloads\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://eslint.org\"\u003e\u003cimg src=\"https://img.shields.io/badge/code%20style-eslint-blue\" alt=\"eslint\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n### SUPPORT\n\n| node-version | gulp-yarn |\n|--------------|-----------|\n| \\\u003e= v14      | v4        |\n| \\\u003e= v10      | v3        |\n| Older        | v1        |\n\n## Install\n\n```bash\n# npm\n$ npm install gulp-yarn --save-dev\n\n# yarn\n$ yarn add gulp-yarn -D\n```\n\n## Usage\n\n**BASIC:** Better performance when in same directory.\n\n```javascript\nconst { src } = require('gulp');\nvar yarn = require('gulp-yarn');\n\nconst yarnTask = function () {\n  return src(['./package.json'])\n    .pipe(yarn());\n};\n\n```\n\n**PRO:** Remember to include `yarn.lock` file.\n\n```javascript\nconst { src, dest } = require('gulp');\nvar yarn = require('gulp-yarn');\n\nconst yarnTask = function () {\n  return src(['./package.json'])\n    .pipe(dest('./dist'))\n    .pipe(yarn({\n      production: true\n    }));\n};\n```\n\n## Options\n\n| Option         | Description                                                                                                                                                             | Type         |\n|----------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------|--------------|\n| production     | Using the `--production` flag, or when the NODE_ENV environment variable is set to production, Yarn will not install any package listed in devDependencies.             | Boolean      |\n| dev            | Yarn will only install listed devDependencies.                                                                                                                          | Boolean      |\n| flat           | Only allow one version of a package. On the first run this will prompt you to choose a single version for each package that is depended on at multiple version ranges.  | Boolean      |\n| force          | This refetches all packages, even ones that were previously installed.                                                                                                  | Boolean      |\n| ignoreEngines  | Ignore all the required engines force by some packages.                                                                                                                 | Boolean      |\n| noBinLinks     | None of `node_module` bin links getting created.                                                                                                                        | Boolean      |\n| noProgress     | Disable progress bar                                                                                                                                                    | Boolean      |\n| noLockfile     | Don't read or generate a lockfile                                                                                                                                       | Boolean      |\n| ignoreScripts  | Don't run npm scripts during installation                                                                                                                               | Boolean      |\n| nonInteractive | Using the '--non-interactive' flag of yarn to avoid that during the resolution (yarn install) a user input is needed. [2770](https://github.com/yarnpkg/yarn/pull/2770) | Boolean      | \n| args           | Pass any argument with `--` to execute with yarn                                                                                                                        | String/Array |\n\n## Test\n\n```sh\n#run jest test\nyarn test\n```\n\n## Contribute\n\nContributions are always welcome, no matter how large or small.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwarapitiya%2Fgulp-yarn","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwarapitiya%2Fgulp-yarn","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwarapitiya%2Fgulp-yarn/lists"}