Skip to content

Instantly share code, notes, and snippets.

@Bnaya
Last active February 1, 2019 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bnaya/c5b3892d8446170fa9dc550bc7212b29 to your computer and use it in GitHub Desktop.
Save Bnaya/c5b3892d8446170fa9dc550bc7212b29 to your computer and use it in GitHub Desktop.
before yarn deduplicate
.
├── node_modules
│   └── @types
│   ├── fs-extra
│   │   ├── LICENSE
│   │   ├── README.md
│   │   ├── index.d.ts
│   │   ├── node_modules
│   │   │   └── @types
│   │   │   └── node
│   │   │   ├── LICENSE
│   │   │   ├── README.md
│   │   │   ├── index.d.ts
│   │   │   ├── inspector.d.ts
│   │   │   └── package.json
│   │   └── package.json
│   └── node
│   ├── LICENSE
│   ├── README.md
│   ├── index.d.ts
│   ├── inspector.d.ts
│   └── package.json
├── package.json
└── yarn.lock
{
"name": "yarn-dedup-examples",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^5.0.4",
"@types/node": "^8"
},
"dependencies": {}
}
# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY.
# yarn lockfile v1
"@types/fs-extra@^5.0.4":
version "5.0.4"
resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-5.0.4.tgz#b971134d162cc0497d221adde3dbb67502225599"
integrity sha512-DsknoBvD8s+RFfSGjmERJ7ZOP1HI0UZRA3FSI+Zakhrc/Gy26YQsLI+m5V5DHxroHRJqCDLKJp7Hixn8zyaF7g==
dependencies:
"@types/node" "*"
"@types/node@*":
version "10.12.19"
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.19.tgz#ca1018c26be01f07e66ac7fefbeb6407e4490c61"
integrity sha512-2NVovndCjJQj6fUUn9jCgpP4WSqr+u1SoUZMZyJkhGeBFsm6dE46l31S7lPUYt9uQ28XI+ibrJA1f5XyH5HNtA==
"@types/node@^8":
version "8.10.39"
resolved "https://registry.yarnpkg.com/@types/node/-/node-8.10.39.tgz#e7e87ad00364dd7bc485c940926345b8ec1a26ca"
integrity sha512-rE7fktr02J8ybFf6eysife+WF+L4sAHWzw09DgdCebEu+qDwMvv4zl6Bc+825ttGZP73kCKxa3dhJOoGJ8+5mA==
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment