├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .github ├── issue_template.md └── workflows │ └── push.yml ├── .gitignore ├── .verb.md ├── LICENSE ├── README.md ├── examples ├── gulpfile.js └── index.html ├── index.js ├── package.json └── test ├── expected ├── collapse.html └── normal.html ├── fixtures └── index.html └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.gitignore -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/.verb.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/README.md -------------------------------------------------------------------------------- /examples/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/examples/gulpfile.js -------------------------------------------------------------------------------- /examples/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/examples/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/collapse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/test/expected/collapse.html -------------------------------------------------------------------------------- /test/expected/normal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/test/expected/normal.html -------------------------------------------------------------------------------- /test/fixtures/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/test/fixtures/index.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pioug/gulp-html-minifier-terser/HEAD/test/test.js --------------------------------------------------------------------------------