├── .editorconfig ├── .github └── workflows │ ├── npm-publish-tag.yml │ └── test-master.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── changelog.md ├── index.js ├── package.json └── test ├── fixture ├── anotherFile.txt └── file.txt ├── main.test.js └── sample /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/npm-publish-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/.github/workflows/npm-publish-tag.yml -------------------------------------------------------------------------------- /.github/workflows/test-master.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/.github/workflows/test-master.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/README.md -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/changelog.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/package.json -------------------------------------------------------------------------------- /test/fixture/anotherFile.txt: -------------------------------------------------------------------------------- 1 | Another world 2 | -------------------------------------------------------------------------------- /test/fixture/file.txt: -------------------------------------------------------------------------------- 1 | Hello world 2 | -------------------------------------------------------------------------------- /test/main.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/test/main.test.js -------------------------------------------------------------------------------- /test/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gulp-community/gulp-header/HEAD/test/sample --------------------------------------------------------------------------------