├── .editorconfig ├── .eslintignore ├── .gitattributes ├── .gitignore ├── .travis.yml ├── LICENSE-MIT ├── README.md ├── gulpfile.js ├── lib ├── default-gruntfile.js └── index.js ├── package.json └── test ├── appendjavascript.js ├── basic.js ├── fixtures └── custom-gruntfile.js ├── helpers.js ├── insertconfig.js ├── insertvariable.js ├── loadnpmtask.js ├── prependjavascript.js └── registertask.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | test/fixtures 2 | lib/default-gruntfile.js 3 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/README.md -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/gulpfile.js -------------------------------------------------------------------------------- /lib/default-gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/lib/default-gruntfile.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/package.json -------------------------------------------------------------------------------- /test/appendjavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/appendjavascript.js -------------------------------------------------------------------------------- /test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/basic.js -------------------------------------------------------------------------------- /test/fixtures/custom-gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/fixtures/custom-gruntfile.js -------------------------------------------------------------------------------- /test/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/helpers.js -------------------------------------------------------------------------------- /test/insertconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/insertconfig.js -------------------------------------------------------------------------------- /test/insertvariable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/insertvariable.js -------------------------------------------------------------------------------- /test/loadnpmtask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/loadnpmtask.js -------------------------------------------------------------------------------- /test/prependjavascript.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/prependjavascript.js -------------------------------------------------------------------------------- /test/registertask.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SBoudrias/gruntfile-editor/HEAD/test/registertask.js --------------------------------------------------------------------------------