├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── gulpfile.js ├── index.d.ts ├── index.js ├── license ├── package.json ├── readme.md └── test ├── directory.js ├── empty.js ├── fixture ├── .empty │ └── .gitkeep ├── .symlink │ └── symlink.txt ├── dir-fixture │ └── inside.txt └── fixture.txt ├── main.js ├── symlink.js └── windows-fix.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/readme.md -------------------------------------------------------------------------------- /test/directory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/test/directory.js -------------------------------------------------------------------------------- /test/empty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/test/empty.js -------------------------------------------------------------------------------- /test/fixture/.empty/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixture/.symlink/symlink.txt: -------------------------------------------------------------------------------- 1 | ../fixture.txt -------------------------------------------------------------------------------- /test/fixture/dir-fixture/inside.txt: -------------------------------------------------------------------------------- 1 | inside -------------------------------------------------------------------------------- /test/fixture/fixture.txt: -------------------------------------------------------------------------------- 1 | hello world 2 | -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/test/main.js -------------------------------------------------------------------------------- /test/symlink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/test/symlink.js -------------------------------------------------------------------------------- /test/windows-fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/gulp-tar/HEAD/test/windows-fix.js --------------------------------------------------------------------------------