├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── example.js ├── package.json ├── pnpm-lock.yaml ├── pnpm-workspace.yaml ├── renovate.json ├── src ├── cli.ts └── index.ts ├── test ├── async.ts ├── emulateWinNonDevelopMode.js └── sync.ts ├── tsconfig.json └── typings └── index.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message=chore(release): %s 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /pnpm-workspace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/pnpm-workspace.yaml -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/renovate.json -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/src/cli.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/src/index.ts -------------------------------------------------------------------------------- /test/async.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/test/async.ts -------------------------------------------------------------------------------- /test/emulateWinNonDevelopMode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/test/emulateWinNonDevelopMode.js -------------------------------------------------------------------------------- /test/sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/test/sync.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pnpm/symlink-dir/HEAD/typings/index.d.ts --------------------------------------------------------------------------------