├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── browser.js ├── config └── jshint.js ├── css-transform.js ├── examples ├── deduped-modules │ ├── index.html │ ├── index.js │ └── package.json ├── node_modules │ └── bootstrap │ │ ├── dist │ │ ├── css │ │ │ ├── bootstrap-theme.css │ │ │ ├── bootstrap-theme.css.map │ │ │ ├── bootstrap-theme.min.css │ │ │ ├── bootstrap.css │ │ │ ├── bootstrap.css.map │ │ │ └── bootstrap.min.css │ │ ├── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ └── glyphicons-halflings-regular.woff2 │ │ └── js │ │ │ ├── bootstrap.js │ │ │ ├── bootstrap.min.js │ │ │ └── npm.js │ │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ │ ├── js │ │ ├── affix.js │ │ ├── alert.js │ │ ├── button.js │ │ ├── carousel.js │ │ ├── collapse.js │ │ ├── dropdown.js │ │ ├── modal.js │ │ ├── popover.js │ │ ├── scrollspy.js │ │ ├── tab.js │ │ ├── tooltip.js │ │ └── transition.js │ │ └── package.json └── submodules │ ├── app.css │ ├── bundle.css │ ├── bundle.js │ ├── index.html │ ├── index.js │ ├── modules │ ├── bar │ │ ├── bar.css │ │ └── index.js │ └── foo │ │ ├── foo.css │ │ └── index.js │ ├── package-lock.json │ ├── package.json │ └── styles │ └── common.css ├── gulp ├── config.js ├── error-handler.js └── tasks │ ├── build.js │ ├── bundles.js │ ├── clean.js │ └── jshint.js ├── gulpfile.js ├── index.js ├── package.json └── test ├── fixtures ├── app.css ├── app.inline-small.css ├── app.inline.css ├── app.output.css ├── background-600.png ├── background.png ├── jquery.js └── submodules │ ├── index.html │ └── index.js └── index.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | .nyc_output 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | .nyc_output 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/README.md -------------------------------------------------------------------------------- /browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/browser.js -------------------------------------------------------------------------------- /config/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/config/jshint.js -------------------------------------------------------------------------------- /css-transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/css-transform.js -------------------------------------------------------------------------------- /examples/deduped-modules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/deduped-modules/index.html -------------------------------------------------------------------------------- /examples/deduped-modules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/deduped-modules/index.js -------------------------------------------------------------------------------- /examples/deduped-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/deduped-modules/package.json -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/css/bootstrap-theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/css/bootstrap-theme.css -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/css/bootstrap-theme.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/css/bootstrap-theme.css.map -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/css/bootstrap-theme.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/css/bootstrap-theme.min.css -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/css/bootstrap.css -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/css/bootstrap.css.map -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/css/bootstrap.min.css -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/js/bootstrap.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/js/bootstrap.min.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/dist/js/npm.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/affix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/affix.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/alert.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/alert.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/button.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/carousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/carousel.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/collapse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/collapse.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/dropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/dropdown.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/modal.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/popover.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/popover.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/scrollspy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/scrollspy.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/tab.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/tooltip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/tooltip.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/js/transition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/js/transition.js -------------------------------------------------------------------------------- /examples/node_modules/bootstrap/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/node_modules/bootstrap/package.json -------------------------------------------------------------------------------- /examples/submodules/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/app.css -------------------------------------------------------------------------------- /examples/submodules/bundle.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/bundle.css -------------------------------------------------------------------------------- /examples/submodules/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/bundle.js -------------------------------------------------------------------------------- /examples/submodules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/index.html -------------------------------------------------------------------------------- /examples/submodules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/index.js -------------------------------------------------------------------------------- /examples/submodules/modules/bar/bar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/modules/bar/bar.css -------------------------------------------------------------------------------- /examples/submodules/modules/bar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/modules/bar/index.js -------------------------------------------------------------------------------- /examples/submodules/modules/foo/foo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/modules/foo/foo.css -------------------------------------------------------------------------------- /examples/submodules/modules/foo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/modules/foo/index.js -------------------------------------------------------------------------------- /examples/submodules/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/package-lock.json -------------------------------------------------------------------------------- /examples/submodules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/package.json -------------------------------------------------------------------------------- /examples/submodules/styles/common.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/examples/submodules/styles/common.css -------------------------------------------------------------------------------- /gulp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulp/config.js -------------------------------------------------------------------------------- /gulp/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulp/error-handler.js -------------------------------------------------------------------------------- /gulp/tasks/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulp/tasks/build.js -------------------------------------------------------------------------------- /gulp/tasks/bundles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulp/tasks/bundles.js -------------------------------------------------------------------------------- /gulp/tasks/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulp/tasks/clean.js -------------------------------------------------------------------------------- /gulp/tasks/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulp/tasks/jshint.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/package.json -------------------------------------------------------------------------------- /test/fixtures/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/app.css -------------------------------------------------------------------------------- /test/fixtures/app.inline-small.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/app.inline-small.css -------------------------------------------------------------------------------- /test/fixtures/app.inline.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/app.inline.css -------------------------------------------------------------------------------- /test/fixtures/app.output.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/app.output.css -------------------------------------------------------------------------------- /test/fixtures/background-600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/background-600.png -------------------------------------------------------------------------------- /test/fixtures/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/background.png -------------------------------------------------------------------------------- /test/fixtures/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/jquery.js -------------------------------------------------------------------------------- /test/fixtures/submodules/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/submodules/index.html -------------------------------------------------------------------------------- /test/fixtures/submodules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/fixtures/submodules/index.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cheton/browserify-css/HEAD/test/index.js --------------------------------------------------------------------------------