gitextract_0od9uxhv/ ├── .gitignore ├── LICENSE ├── README.md ├── README_zh-CN.md ├── assets/ │ └── .babelrc ├── index.js ├── karma/ │ └── karma.conf.js ├── lib/ │ ├── assetsPathParser.js │ ├── base64.js │ ├── cdnProxy.js │ ├── gmutil.js │ ├── gulp-usemin/ │ │ ├── .npmignore │ │ ├── .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/ │ │ │ │ ├── clear.css │ │ │ │ └── main.css │ │ │ ├── css-with-media-query-error.html │ │ │ ├── css-with-media-query.html │ │ │ ├── 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 │ ├── htmlPathParser.js │ ├── iconFonter.js │ ├── inline.js │ ├── revReplace.js │ ├── spriter/ │ │ ├── README.md │ │ ├── index.js │ │ ├── lib/ │ │ │ ├── get-background-image-declarations.js │ │ │ ├── get-meta-info-for-declaration.js │ │ │ ├── map-over-styles-and-transform-background-image-declarations.js │ │ │ ├── spriter-util.js │ │ │ ├── transform-file-with-sprite-sheet-data.js │ │ │ └── transform-map.js │ │ └── package.json │ └── store.js ├── meta/ │ └── home/ │ ├── index.html │ ├── main.es6 │ └── main.scss ├── package.json ├── presetlib/ │ ├── jquery.js │ ├── react-0.14.6/ │ │ └── build/ │ │ ├── react-dom-server.js │ │ ├── react-dom.js │ │ ├── react-with-addons.js │ │ └── react.js │ └── react.js ├── scripts/ │ ├── gulp/ │ │ └── gulpfile.js │ ├── install.sh │ ├── package.json │ └── preinstall.sh └── test.js