├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── expected ├── inlined-image-png.html ├── inlined-image-svg.html ├── inlined-link.html ├── inlined-nominify.html ├── inlined-script.html └── inlined-with-attributes.html ├── fixtures ├── image-png.html ├── image-svg.html ├── image.png ├── image.svg ├── link.html ├── nominify.html ├── script-es6.html ├── script-es6.js ├── script-relative.html ├── script.html ├── script.js ├── style.css └── with-attributes.html └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | *.sublime-* 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/inlined-image-png.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/expected/inlined-image-png.html -------------------------------------------------------------------------------- /test/expected/inlined-image-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/expected/inlined-image-svg.html -------------------------------------------------------------------------------- /test/expected/inlined-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/expected/inlined-link.html -------------------------------------------------------------------------------- /test/expected/inlined-nominify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/expected/inlined-nominify.html -------------------------------------------------------------------------------- /test/expected/inlined-script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/expected/inlined-script.html -------------------------------------------------------------------------------- /test/expected/inlined-with-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/expected/inlined-with-attributes.html -------------------------------------------------------------------------------- /test/fixtures/image-png.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/image-png.html -------------------------------------------------------------------------------- /test/fixtures/image-svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/image-svg.html -------------------------------------------------------------------------------- /test/fixtures/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/image.png -------------------------------------------------------------------------------- /test/fixtures/image.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/image.svg -------------------------------------------------------------------------------- /test/fixtures/link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/link.html -------------------------------------------------------------------------------- /test/fixtures/nominify.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/nominify.html -------------------------------------------------------------------------------- /test/fixtures/script-es6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/script-es6.html -------------------------------------------------------------------------------- /test/fixtures/script-es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/script-es6.js -------------------------------------------------------------------------------- /test/fixtures/script-relative.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/script-relative.html -------------------------------------------------------------------------------- /test/fixtures/script.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/script.html -------------------------------------------------------------------------------- /test/fixtures/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/script.js -------------------------------------------------------------------------------- /test/fixtures/style.css: -------------------------------------------------------------------------------- 1 | .classname { 2 | color: red; 3 | } -------------------------------------------------------------------------------- /test/fixtures/with-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/fixtures/with-attributes.html -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmal/gulp-inline-source/HEAD/test/main.js --------------------------------------------------------------------------------