├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── fixtures ├── hello.min.txt └── hello.txt ├── path-parsing.spec.js ├── rename-sourcemap.spec.js ├── rename.spec.js └── spec-helper.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | package-lock.json 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/hello.min.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /test/fixtures/hello.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /test/path-parsing.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/test/path-parsing.spec.js -------------------------------------------------------------------------------- /test/rename-sourcemap.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/test/rename-sourcemap.spec.js -------------------------------------------------------------------------------- /test/rename.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/test/rename.spec.js -------------------------------------------------------------------------------- /test/spec-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hparra/gulp-rename/HEAD/test/spec-helper.js --------------------------------------------------------------------------------