├── .editorconfig ├── .gitignore ├── .jshintrc ├── .travis.yml ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── config ├── clean.coffee ├── connect.js ├── jshint.json ├── markdown.cson ├── nodeunit.yml └── watch.js ├── demos ├── 1.by-taskname │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .jshintrc │ ├── Gruntfile.js │ ├── app │ │ ├── .htaccess │ │ ├── 404.html │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── robots.txt │ │ ├── scripts │ │ │ └── main.js │ │ └── styles │ │ │ └── main.scss │ ├── bower.json │ ├── config │ │ ├── autoprefixer.js │ │ ├── bower-install.js │ │ ├── clean.js │ │ ├── compass.js │ │ ├── concurrent.js │ │ ├── connect.js │ │ ├── copy.js │ │ ├── htmlmin.js │ │ ├── imagemin.js │ │ ├── jshint.js │ │ ├── mocha.js │ │ ├── modernizr.js │ │ ├── rev.js │ │ ├── svgmin.js │ │ ├── usemin.js │ │ ├── useminPrepare.js │ │ └── watch.js │ ├── package.json │ └── test │ │ ├── index.html │ │ ├── lib │ │ ├── chai.js │ │ ├── expect.js │ │ └── mocha │ │ │ ├── mocha.css │ │ │ └── mocha.js │ │ └── spec │ │ └── test.js ├── 2.single-file │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .jshintrc │ ├── Gruntfile.js │ ├── app │ │ ├── .htaccess │ │ ├── 404.html │ │ ├── favicon.ico │ │ ├── index.html │ │ ├── robots.txt │ │ ├── scripts │ │ │ └── main.js │ │ └── styles │ │ │ └── main.scss │ ├── bower.json │ ├── config │ │ └── grunt.js │ ├── package.json │ └── test │ │ ├── index.html │ │ ├── lib │ │ ├── chai.js │ │ ├── expect.js │ │ └── mocha │ │ │ ├── mocha.css │ │ │ └── mocha.js │ │ └── spec │ │ └── test.js └── 3.by-type │ ├── .bowerrc │ ├── .editorconfig │ ├── .gitattributes │ ├── .gitignore │ ├── .jshintrc │ ├── Gruntfile.js │ ├── app │ ├── .htaccess │ ├── 404.html │ ├── favicon.ico │ ├── index.html │ ├── robots.txt │ ├── scripts │ │ └── main.js │ └── styles │ │ └── main.scss │ ├── bower.json │ ├── config │ ├── build.js │ ├── defaults.js │ ├── serve.js │ └── test.js │ ├── package.json │ └── test │ ├── index.html │ ├── lib │ ├── chai.js │ ├── expect.js │ └── mocha │ │ ├── mocha.css │ │ └── mocha.js │ └── spec │ └── test.js ├── lib └── load-grunt-configs.js ├── package.json └── test ├── load-grunt-configs_test.js └── support ├── configs.js └── stubs.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .tmp -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/README.md -------------------------------------------------------------------------------- /config/clean.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/config/clean.coffee -------------------------------------------------------------------------------- /config/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/config/connect.js -------------------------------------------------------------------------------- /config/jshint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/config/jshint.json -------------------------------------------------------------------------------- /config/markdown.cson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/config/markdown.cson -------------------------------------------------------------------------------- /config/nodeunit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/config/nodeunit.yml -------------------------------------------------------------------------------- /config/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/config/watch.js -------------------------------------------------------------------------------- /demos/1.by-taskname/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /demos/1.by-taskname/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/.editorconfig -------------------------------------------------------------------------------- /demos/1.by-taskname/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /demos/1.by-taskname/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/.gitignore -------------------------------------------------------------------------------- /demos/1.by-taskname/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/.jshintrc -------------------------------------------------------------------------------- /demos/1.by-taskname/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/Gruntfile.js -------------------------------------------------------------------------------- /demos/1.by-taskname/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/app/.htaccess -------------------------------------------------------------------------------- /demos/1.by-taskname/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/app/404.html -------------------------------------------------------------------------------- /demos/1.by-taskname/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/app/favicon.ico -------------------------------------------------------------------------------- /demos/1.by-taskname/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/app/index.html -------------------------------------------------------------------------------- /demos/1.by-taskname/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /demos/1.by-taskname/app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/app/scripts/main.js -------------------------------------------------------------------------------- /demos/1.by-taskname/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/app/styles/main.scss -------------------------------------------------------------------------------- /demos/1.by-taskname/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/bower.json -------------------------------------------------------------------------------- /demos/1.by-taskname/config/autoprefixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/autoprefixer.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/bower-install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/bower-install.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/clean.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/compass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/compass.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/concurrent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/concurrent.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/connect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/connect.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/copy.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/htmlmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/htmlmin.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/imagemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/imagemin.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/jshint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/jshint.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/mocha.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/modernizr.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/rev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/rev.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/svgmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/svgmin.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/usemin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/usemin.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/useminPrepare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/useminPrepare.js -------------------------------------------------------------------------------- /demos/1.by-taskname/config/watch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/config/watch.js -------------------------------------------------------------------------------- /demos/1.by-taskname/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/package.json -------------------------------------------------------------------------------- /demos/1.by-taskname/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/test/index.html -------------------------------------------------------------------------------- /demos/1.by-taskname/test/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/test/lib/chai.js -------------------------------------------------------------------------------- /demos/1.by-taskname/test/lib/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/test/lib/expect.js -------------------------------------------------------------------------------- /demos/1.by-taskname/test/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/test/lib/mocha/mocha.css -------------------------------------------------------------------------------- /demos/1.by-taskname/test/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/test/lib/mocha/mocha.js -------------------------------------------------------------------------------- /demos/1.by-taskname/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/1.by-taskname/test/spec/test.js -------------------------------------------------------------------------------- /demos/2.single-file/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /demos/2.single-file/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/.editorconfig -------------------------------------------------------------------------------- /demos/2.single-file/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /demos/2.single-file/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/.gitignore -------------------------------------------------------------------------------- /demos/2.single-file/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/.jshintrc -------------------------------------------------------------------------------- /demos/2.single-file/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/Gruntfile.js -------------------------------------------------------------------------------- /demos/2.single-file/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/app/.htaccess -------------------------------------------------------------------------------- /demos/2.single-file/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/app/404.html -------------------------------------------------------------------------------- /demos/2.single-file/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/app/favicon.ico -------------------------------------------------------------------------------- /demos/2.single-file/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/app/index.html -------------------------------------------------------------------------------- /demos/2.single-file/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /demos/2.single-file/app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/app/scripts/main.js -------------------------------------------------------------------------------- /demos/2.single-file/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/app/styles/main.scss -------------------------------------------------------------------------------- /demos/2.single-file/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/bower.json -------------------------------------------------------------------------------- /demos/2.single-file/config/grunt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/config/grunt.js -------------------------------------------------------------------------------- /demos/2.single-file/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/package.json -------------------------------------------------------------------------------- /demos/2.single-file/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/test/index.html -------------------------------------------------------------------------------- /demos/2.single-file/test/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/test/lib/chai.js -------------------------------------------------------------------------------- /demos/2.single-file/test/lib/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/test/lib/expect.js -------------------------------------------------------------------------------- /demos/2.single-file/test/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/test/lib/mocha/mocha.css -------------------------------------------------------------------------------- /demos/2.single-file/test/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/test/lib/mocha/mocha.js -------------------------------------------------------------------------------- /demos/2.single-file/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/2.single-file/test/spec/test.js -------------------------------------------------------------------------------- /demos/3.by-type/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "app/bower_components" 3 | } 4 | -------------------------------------------------------------------------------- /demos/3.by-type/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/.editorconfig -------------------------------------------------------------------------------- /demos/3.by-type/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /demos/3.by-type/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/.gitignore -------------------------------------------------------------------------------- /demos/3.by-type/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/.jshintrc -------------------------------------------------------------------------------- /demos/3.by-type/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/Gruntfile.js -------------------------------------------------------------------------------- /demos/3.by-type/app/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/app/.htaccess -------------------------------------------------------------------------------- /demos/3.by-type/app/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/app/404.html -------------------------------------------------------------------------------- /demos/3.by-type/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/app/favicon.ico -------------------------------------------------------------------------------- /demos/3.by-type/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/app/index.html -------------------------------------------------------------------------------- /demos/3.by-type/app/robots.txt: -------------------------------------------------------------------------------- 1 | # robotstxt.org/ 2 | 3 | User-agent: * 4 | -------------------------------------------------------------------------------- /demos/3.by-type/app/scripts/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/app/scripts/main.js -------------------------------------------------------------------------------- /demos/3.by-type/app/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/app/styles/main.scss -------------------------------------------------------------------------------- /demos/3.by-type/bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/bower.json -------------------------------------------------------------------------------- /demos/3.by-type/config/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/config/build.js -------------------------------------------------------------------------------- /demos/3.by-type/config/defaults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/config/defaults.js -------------------------------------------------------------------------------- /demos/3.by-type/config/serve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/config/serve.js -------------------------------------------------------------------------------- /demos/3.by-type/config/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/config/test.js -------------------------------------------------------------------------------- /demos/3.by-type/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/package.json -------------------------------------------------------------------------------- /demos/3.by-type/test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/test/index.html -------------------------------------------------------------------------------- /demos/3.by-type/test/lib/chai.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/test/lib/chai.js -------------------------------------------------------------------------------- /demos/3.by-type/test/lib/expect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/test/lib/expect.js -------------------------------------------------------------------------------- /demos/3.by-type/test/lib/mocha/mocha.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/test/lib/mocha/mocha.css -------------------------------------------------------------------------------- /demos/3.by-type/test/lib/mocha/mocha.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/test/lib/mocha/mocha.js -------------------------------------------------------------------------------- /demos/3.by-type/test/spec/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/demos/3.by-type/test/spec/test.js -------------------------------------------------------------------------------- /lib/load-grunt-configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/lib/load-grunt-configs.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/package.json -------------------------------------------------------------------------------- /test/load-grunt-configs_test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/test/load-grunt-configs_test.js -------------------------------------------------------------------------------- /test/support/configs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/test/support/configs.js -------------------------------------------------------------------------------- /test/support/stubs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creynders/load-grunt-configs/HEAD/test/support/stubs.js --------------------------------------------------------------------------------