├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── gulpfile.js ├── index.js ├── lib ├── blocksBuilder.js ├── htmlBuilder.js └── pipeline.js ├── package.json └── test ├── expected ├── app.js ├── array-js-attributes.html ├── build-remove-no-trailing-whitespace.html ├── complex-path.html ├── complex.html ├── conditional-complex.html ├── conditional-css.html ├── conditional-inline-css.html ├── conditional-inline-js.html ├── conditional-js.html ├── data │ ├── css │ │ ├── min-style.css │ │ └── style.css │ └── js │ │ ├── app.js │ │ ├── app_min_concat.js │ │ └── min-app.js ├── glob-inline-css.html ├── glob-inline-js.html ├── many-blocks-removal.html ├── min-app.js ├── min-complex-path.html ├── min-complex.html ├── min-css-with-media-query.html ├── min-html-simple-css.html ├── min-html-simple-js.html ├── min-html-simple-removal.html ├── min-paths-with-querystring.html ├── min-simple-css-path.html ├── min-simple-css.html ├── min-simple-js-path.html ├── min-simple-js.html ├── min-style.css ├── multiple-alternative-paths.html ├── multiple-files.html ├── paths-with-querystring.html ├── simple-css-path.html ├── simple-css.html ├── simple-inline-css.html ├── simple-inline-js.html ├── simple-js-path.html ├── simple-js-removal.html ├── simple-js.html ├── single-quotes-css.html ├── single-quotes-inline-css.html ├── single-quotes-inline-js.html ├── single-quotes-js.html ├── style.css └── subfolder │ ├── app.js │ └── index.html ├── fixtures ├── alternative │ └── js │ │ └── util.js ├── array-js-attributes.html ├── async-less.html ├── build-remove-no-trailing-whitespace.html ├── comment-js.html ├── complex-path.html ├── complex.html ├── conditional-complex.html ├── conditional-css.html ├── conditional-inline-css.html ├── conditional-inline-js.html ├── conditional-js.html ├── css-with-media-query-error.html ├── css-with-media-query.html ├── css │ ├── clear.css │ └── main.css ├── glob-css.html ├── glob-inline-css.html ├── glob-inline-js.html ├── glob-js.html ├── js │ ├── lib.js │ └── main.js ├── js2 │ ├── lib2.js │ └── main2.js ├── less │ ├── clear.less │ └── main.less ├── many-blocks-removal.html ├── many-blocks.html ├── min-html-simple-css.html ├── min-html-simple-js.html ├── min-html-simple-removal.html ├── multiple-alternative-paths-inline.html ├── multiple-alternative-paths.html ├── multiple-files.html ├── paths-with-querystring.html ├── simple-css-alternate-path.html ├── simple-css-path.html ├── simple-css.html ├── simple-inline-css.html ├── simple-inline-js.html ├── simple-js-alternate-path.html ├── simple-js-path.html ├── simple-js-removal.html ├── simple-js.html ├── single-quotes-css.html ├── single-quotes-inline-css.html ├── single-quotes-inline-js.html ├── single-quotes-js.html └── subfolder │ ├── index.html │ └── script.js └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /*.log 3 | .idea/ 4 | *~ 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/index.js -------------------------------------------------------------------------------- /lib/blocksBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/lib/blocksBuilder.js -------------------------------------------------------------------------------- /lib/htmlBuilder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/lib/htmlBuilder.js -------------------------------------------------------------------------------- /lib/pipeline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/lib/pipeline.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/package.json -------------------------------------------------------------------------------- /test/expected/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/app.js -------------------------------------------------------------------------------- /test/expected/array-js-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/array-js-attributes.html -------------------------------------------------------------------------------- /test/expected/build-remove-no-trailing-whitespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/build-remove-no-trailing-whitespace.html -------------------------------------------------------------------------------- /test/expected/complex-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/complex-path.html -------------------------------------------------------------------------------- /test/expected/complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/complex.html -------------------------------------------------------------------------------- /test/expected/conditional-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/conditional-complex.html -------------------------------------------------------------------------------- /test/expected/conditional-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/conditional-css.html -------------------------------------------------------------------------------- /test/expected/conditional-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/conditional-inline-css.html -------------------------------------------------------------------------------- /test/expected/conditional-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/conditional-inline-js.html -------------------------------------------------------------------------------- /test/expected/conditional-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/conditional-js.html -------------------------------------------------------------------------------- /test/expected/data/css/min-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/data/css/min-style.css -------------------------------------------------------------------------------- /test/expected/data/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/data/css/style.css -------------------------------------------------------------------------------- /test/expected/data/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/data/js/app.js -------------------------------------------------------------------------------- /test/expected/data/js/app_min_concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/data/js/app_min_concat.js -------------------------------------------------------------------------------- /test/expected/data/js/min-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/data/js/min-app.js -------------------------------------------------------------------------------- /test/expected/glob-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/glob-inline-css.html -------------------------------------------------------------------------------- /test/expected/glob-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/glob-inline-js.html -------------------------------------------------------------------------------- /test/expected/many-blocks-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/many-blocks-removal.html -------------------------------------------------------------------------------- /test/expected/min-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-app.js -------------------------------------------------------------------------------- /test/expected/min-complex-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-complex-path.html -------------------------------------------------------------------------------- /test/expected/min-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-complex.html -------------------------------------------------------------------------------- /test/expected/min-css-with-media-query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-css-with-media-query.html -------------------------------------------------------------------------------- /test/expected/min-html-simple-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-html-simple-css.html -------------------------------------------------------------------------------- /test/expected/min-html-simple-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-html-simple-js.html -------------------------------------------------------------------------------- /test/expected/min-html-simple-removal.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/expected/min-paths-with-querystring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-paths-with-querystring.html -------------------------------------------------------------------------------- /test/expected/min-simple-css-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-simple-css-path.html -------------------------------------------------------------------------------- /test/expected/min-simple-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-simple-css.html -------------------------------------------------------------------------------- /test/expected/min-simple-js-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-simple-js-path.html -------------------------------------------------------------------------------- /test/expected/min-simple-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-simple-js.html -------------------------------------------------------------------------------- /test/expected/min-style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/min-style.css -------------------------------------------------------------------------------- /test/expected/multiple-alternative-paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/multiple-alternative-paths.html -------------------------------------------------------------------------------- /test/expected/multiple-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/multiple-files.html -------------------------------------------------------------------------------- /test/expected/paths-with-querystring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/paths-with-querystring.html -------------------------------------------------------------------------------- /test/expected/simple-css-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-css-path.html -------------------------------------------------------------------------------- /test/expected/simple-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-css.html -------------------------------------------------------------------------------- /test/expected/simple-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-inline-css.html -------------------------------------------------------------------------------- /test/expected/simple-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-inline-js.html -------------------------------------------------------------------------------- /test/expected/simple-js-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-js-path.html -------------------------------------------------------------------------------- /test/expected/simple-js-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-js-removal.html -------------------------------------------------------------------------------- /test/expected/simple-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/simple-js.html -------------------------------------------------------------------------------- /test/expected/single-quotes-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/single-quotes-css.html -------------------------------------------------------------------------------- /test/expected/single-quotes-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/single-quotes-inline-css.html -------------------------------------------------------------------------------- /test/expected/single-quotes-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/single-quotes-inline-js.html -------------------------------------------------------------------------------- /test/expected/single-quotes-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/single-quotes-js.html -------------------------------------------------------------------------------- /test/expected/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/style.css -------------------------------------------------------------------------------- /test/expected/subfolder/app.js: -------------------------------------------------------------------------------- 1 | console.log(sample); -------------------------------------------------------------------------------- /test/expected/subfolder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/expected/subfolder/index.html -------------------------------------------------------------------------------- /test/fixtures/alternative/js/util.js: -------------------------------------------------------------------------------- 1 | alert(1); 2 | -------------------------------------------------------------------------------- /test/fixtures/array-js-attributes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/array-js-attributes.html -------------------------------------------------------------------------------- /test/fixtures/async-less.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/async-less.html -------------------------------------------------------------------------------- /test/fixtures/build-remove-no-trailing-whitespace.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/build-remove-no-trailing-whitespace.html -------------------------------------------------------------------------------- /test/fixtures/comment-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/comment-js.html -------------------------------------------------------------------------------- /test/fixtures/complex-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/complex-path.html -------------------------------------------------------------------------------- /test/fixtures/complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/complex.html -------------------------------------------------------------------------------- /test/fixtures/conditional-complex.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/conditional-complex.html -------------------------------------------------------------------------------- /test/fixtures/conditional-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/conditional-css.html -------------------------------------------------------------------------------- /test/fixtures/conditional-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/conditional-inline-css.html -------------------------------------------------------------------------------- /test/fixtures/conditional-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/conditional-inline-js.html -------------------------------------------------------------------------------- /test/fixtures/conditional-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/conditional-js.html -------------------------------------------------------------------------------- /test/fixtures/css-with-media-query-error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/css-with-media-query-error.html -------------------------------------------------------------------------------- /test/fixtures/css-with-media-query.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/css-with-media-query.html -------------------------------------------------------------------------------- /test/fixtures/css/clear.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/css/clear.css -------------------------------------------------------------------------------- /test/fixtures/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 10px; 3 | } -------------------------------------------------------------------------------- /test/fixtures/glob-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/glob-css.html -------------------------------------------------------------------------------- /test/fixtures/glob-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/glob-inline-css.html -------------------------------------------------------------------------------- /test/fixtures/glob-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/glob-inline-js.html -------------------------------------------------------------------------------- /test/fixtures/glob-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/glob-js.html -------------------------------------------------------------------------------- /test/fixtures/js/lib.js: -------------------------------------------------------------------------------- 1 | var sample = 111; -------------------------------------------------------------------------------- /test/fixtures/js/main.js: -------------------------------------------------------------------------------- 1 | console.log(sample); -------------------------------------------------------------------------------- /test/fixtures/js2/lib2.js: -------------------------------------------------------------------------------- 1 | var sample = 111; -------------------------------------------------------------------------------- /test/fixtures/js2/main2.js: -------------------------------------------------------------------------------- 1 | console.log(sample); -------------------------------------------------------------------------------- /test/fixtures/less/clear.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/less/clear.less -------------------------------------------------------------------------------- /test/fixtures/less/main.less: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 10px; 3 | } -------------------------------------------------------------------------------- /test/fixtures/many-blocks-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/many-blocks-removal.html -------------------------------------------------------------------------------- /test/fixtures/many-blocks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/many-blocks.html -------------------------------------------------------------------------------- /test/fixtures/min-html-simple-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/min-html-simple-css.html -------------------------------------------------------------------------------- /test/fixtures/min-html-simple-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/min-html-simple-js.html -------------------------------------------------------------------------------- /test/fixtures/min-html-simple-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/min-html-simple-removal.html -------------------------------------------------------------------------------- /test/fixtures/multiple-alternative-paths-inline.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/multiple-alternative-paths-inline.html -------------------------------------------------------------------------------- /test/fixtures/multiple-alternative-paths.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/multiple-alternative-paths.html -------------------------------------------------------------------------------- /test/fixtures/multiple-files.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/multiple-files.html -------------------------------------------------------------------------------- /test/fixtures/paths-with-querystring.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/paths-with-querystring.html -------------------------------------------------------------------------------- /test/fixtures/simple-css-alternate-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-css-alternate-path.html -------------------------------------------------------------------------------- /test/fixtures/simple-css-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-css-path.html -------------------------------------------------------------------------------- /test/fixtures/simple-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-css.html -------------------------------------------------------------------------------- /test/fixtures/simple-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-inline-css.html -------------------------------------------------------------------------------- /test/fixtures/simple-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-inline-js.html -------------------------------------------------------------------------------- /test/fixtures/simple-js-alternate-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-js-alternate-path.html -------------------------------------------------------------------------------- /test/fixtures/simple-js-path.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-js-path.html -------------------------------------------------------------------------------- /test/fixtures/simple-js-removal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-js-removal.html -------------------------------------------------------------------------------- /test/fixtures/simple-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/simple-js.html -------------------------------------------------------------------------------- /test/fixtures/single-quotes-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/single-quotes-css.html -------------------------------------------------------------------------------- /test/fixtures/single-quotes-inline-css.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/single-quotes-inline-css.html -------------------------------------------------------------------------------- /test/fixtures/single-quotes-inline-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/single-quotes-inline-js.html -------------------------------------------------------------------------------- /test/fixtures/single-quotes-js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/single-quotes-js.html -------------------------------------------------------------------------------- /test/fixtures/subfolder/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/fixtures/subfolder/index.html -------------------------------------------------------------------------------- /test/fixtures/subfolder/script.js: -------------------------------------------------------------------------------- 1 | console.log(sample); -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zont/gulp-usemin/HEAD/test/main.js --------------------------------------------------------------------------------