├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .npmrc ├── fixture.js ├── gruntfile.js ├── license ├── package.json ├── readme.md ├── tasks └── strip-debug.js └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | /tmp 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /fixture.js: -------------------------------------------------------------------------------- 1 | function test(){debugger;} 2 | -------------------------------------------------------------------------------- /gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/gruntfile.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/readme.md -------------------------------------------------------------------------------- /tasks/strip-debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/tasks/strip-debug.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/grunt-strip-debug/HEAD/test.js --------------------------------------------------------------------------------