├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── Gruntfile.js ├── LICENSE ├── README.md ├── grunt ├── aliases.yaml ├── gh-pages.yaml ├── ghpage.yaml ├── jshint.yaml ├── mochacli.yaml ├── notify.yaml └── watch.yaml ├── index.js ├── lib ├── gruntconfig.js ├── readconfigdir.js └── readfile.js ├── package.json ├── test ├── config │ ├── aliases.yaml │ ├── another-override │ │ └── jsobj.js │ ├── csonfile.cson │ ├── htmlfile.html │ ├── jsfun.js │ ├── jsobj.js │ ├── jsonfile.json │ ├── override │ │ └── jsobj.js │ ├── yamlfile.yaml │ └── ymlfile.yml ├── fixtures │ ├── multiconfig │ │ ├── jsfun-tasks.js │ │ ├── test-tasks.yaml │ │ └── watch.yaml │ ├── output.js │ └── output │ │ └── multiconfig.js ├── gruntconfig.test.js ├── index.test.js ├── readconfigdir.test.js └── readfile.test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | *.iml 3 | node_modules 4 | site 5 | .DS_Store 6 | .grunt 7 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/README.md -------------------------------------------------------------------------------- /grunt/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/aliases.yaml -------------------------------------------------------------------------------- /grunt/gh-pages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/gh-pages.yaml -------------------------------------------------------------------------------- /grunt/ghpage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/ghpage.yaml -------------------------------------------------------------------------------- /grunt/jshint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/jshint.yaml -------------------------------------------------------------------------------- /grunt/mochacli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/mochacli.yaml -------------------------------------------------------------------------------- /grunt/notify.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/notify.yaml -------------------------------------------------------------------------------- /grunt/watch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/grunt/watch.yaml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/index.js -------------------------------------------------------------------------------- /lib/gruntconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/lib/gruntconfig.js -------------------------------------------------------------------------------- /lib/readconfigdir.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/lib/readconfigdir.js -------------------------------------------------------------------------------- /lib/readfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/lib/readfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/package.json -------------------------------------------------------------------------------- /test/config/aliases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/test/config/aliases.yaml -------------------------------------------------------------------------------- /test/config/another-override/jsobj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/test/config/another-override/jsobj.js -------------------------------------------------------------------------------- /test/config/csonfile.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/firstandthird/load-grunt-config/HEAD/test/config/csonfile.cson -------------------------------------------------------------------------------- /test/config/htmlfile.html: -------------------------------------------------------------------------------- 1 |