├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── test ├── main.js ├── simpleTask.js └── submodule.js └── yarn.lock /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/package.json -------------------------------------------------------------------------------- /test/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/test/main.js -------------------------------------------------------------------------------- /test/simpleTask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/test/simpleTask.js -------------------------------------------------------------------------------- /test/submodule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/test/submodule.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OverZealous/run-sequence/HEAD/yarn.lock --------------------------------------------------------------------------------