├── .gitignore ├── Gruntfile.js ├── LICENSE-MIT ├── README.md ├── bin └── grunt-remove-logging ├── example ├── Gruntfile.js └── js │ ├── app.js │ └── output.js ├── package.json ├── tasks ├── grunt-remove-logging.js └── lib │ └── removelogging.js └── test ├── test.js └── tests.txt /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | examples/js/output.js 3 | -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/README.md -------------------------------------------------------------------------------- /bin/grunt-remove-logging: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/bin/grunt-remove-logging -------------------------------------------------------------------------------- /example/Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/example/Gruntfile.js -------------------------------------------------------------------------------- /example/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/example/js/app.js -------------------------------------------------------------------------------- /example/js/output.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/example/js/output.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/package.json -------------------------------------------------------------------------------- /tasks/grunt-remove-logging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/tasks/grunt-remove-logging.js -------------------------------------------------------------------------------- /tasks/lib/removelogging.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/tasks/lib/removelogging.js -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/test/test.js -------------------------------------------------------------------------------- /test/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ehynds/grunt-remove-logging/HEAD/test/tests.txt --------------------------------------------------------------------------------