├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── Readme.md ├── dist ├── conveyorBelt.js └── index.js ├── gulpfile.js ├── package.json ├── src ├── conveyorBelt.js └── index.js └── tests ├── conveyorBelt.spec.js └── mocks ├── app.min.js ├── dir └── js-in-a-sub-dir.dep.js ├── js1.dep.js ├── js2.dep.js └── jsfoobar.dep.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | tests 3 | node_modules 4 | gulpfile.js 5 | .travis.yml 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/Readme.md -------------------------------------------------------------------------------- /dist/conveyorBelt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/dist/conveyorBelt.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/dist/index.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/package.json -------------------------------------------------------------------------------- /src/conveyorBelt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/src/conveyorBelt.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/conveyorBelt.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/svileng/conveyor-belt/HEAD/tests/conveyorBelt.spec.js -------------------------------------------------------------------------------- /tests/mocks/app.min.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/dir/js-in-a-sub-dir.dep.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/js1.dep.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/js2.dep.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/mocks/jsfoobar.dep.js: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------