├── .editorconfig ├── .gitignore ├── .npmignore ├── .prettierrc.json ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── index.ts ├── jasmine.json ├── package.json ├── src ├── minifyHTMLLiterals.ts ├── strategy.ts ├── test │ ├── exports.spec.ts │ ├── minifyHTMLLiterals.spec.ts │ └── strategy.spec.ts └── types │ └── clean-css │ └── index.d.ts └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/README.md -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/index.ts -------------------------------------------------------------------------------- /jasmine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/jasmine.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/package.json -------------------------------------------------------------------------------- /src/minifyHTMLLiterals.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/src/minifyHTMLLiterals.ts -------------------------------------------------------------------------------- /src/strategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/src/strategy.ts -------------------------------------------------------------------------------- /src/test/exports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/src/test/exports.spec.ts -------------------------------------------------------------------------------- /src/test/minifyHTMLLiterals.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/src/test/minifyHTMLLiterals.spec.ts -------------------------------------------------------------------------------- /src/test/strategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/src/test/strategy.spec.ts -------------------------------------------------------------------------------- /src/types/clean-css/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/src/types/clean-css/index.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncliz/minify-html-literals/HEAD/tsconfig.json --------------------------------------------------------------------------------