├── .eslintignore ├── .eslintrc.js ├── .github └── workflows │ └── node.js.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.js ├── .release-it.js ├── .yarnrc.yml ├── AUTHORS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE.md ├── README.md ├── babel.config.js ├── package.json ├── renovate.json ├── src ├── cli.ts └── index.ts ├── tests ├── cli.ts ├── fixtures │ └── yarn.lock ├── index.ts └── tsconfig.json ├── tsconfig.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | dist -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 14 -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.release-it.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/.release-it.js -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- 1 | nodeLinker: node-modules 2 | -------------------------------------------------------------------------------- /AUTHORS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/AUTHORS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/package.json -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/renovate.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/src/index.ts -------------------------------------------------------------------------------- /tests/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/tests/cli.ts -------------------------------------------------------------------------------- /tests/fixtures/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/tests/fixtures/yarn.lock -------------------------------------------------------------------------------- /tests/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/tests/index.ts -------------------------------------------------------------------------------- /tests/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/tests/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scinos/yarn-deduplicate/HEAD/yarn.lock --------------------------------------------------------------------------------