├── .gitignore ├── .npmrc ├── .travis.yml ├── README.md ├── bin └── grunty.js ├── package.json ├── src └── fake-gruntfile-code.js └── test ├── .gitignore ├── a.js ├── b.js ├── concat.js ├── concat.json └── foo.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | test/out.js 3 | npm-debug.log 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/.npmrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/README.md -------------------------------------------------------------------------------- /bin/grunty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/bin/grunty.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/package.json -------------------------------------------------------------------------------- /src/fake-gruntfile-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/src/fake-gruntfile-code.js -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/a.js: -------------------------------------------------------------------------------- 1 | // first line 2 | -------------------------------------------------------------------------------- /test/b.js: -------------------------------------------------------------------------------- 1 | // second line 2 | -------------------------------------------------------------------------------- /test/concat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/test/concat.js -------------------------------------------------------------------------------- /test/concat.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bahmutov/grunty/HEAD/test/concat.json -------------------------------------------------------------------------------- /test/foo.js: -------------------------------------------------------------------------------- 1 | module.exports = 'this is foo'; 2 | --------------------------------------------------------------------------------