All Projects → sindresorhus → Gulp Strip Debug

sindresorhus / Gulp Strip Debug

Licence: mit
Strip console, alert, and debugger statements from JavaScript code

Programming Languages

javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to Gulp Strip Debug

Gulp Debug
Debug Vinyl file streams to see what files are run through your Gulp pipeline
Stars: ✭ 223 (-7.85%)
Mutual labels:  gulp-plugin, debug
ts-transform-react-jsx-source
TypeScript AST Transformer that adds source file and line number to JSX elements
Stars: ✭ 12 (-95.04%)
Mutual labels:  ast, debug
Icecream
🍦 Never use print() to debug again.
Stars: ✭ 5,601 (+2214.46%)
Mutual labels:  debug
Gulp Size
Display the size of your project
Stars: ✭ 225 (-7.02%)
Mutual labels:  gulp-plugin
Magicshader
🔮 Tiny helper for three.js to debug and write shaders
Stars: ✭ 205 (-15.29%)
Mutual labels:  debug
Escaya
An blazing fast 100% spec compliant, incremental javascript parser written in Typescript
Stars: ✭ 217 (-10.33%)
Mutual labels:  ast
Icecream Cpp
🍦 Never use cout/printf to debug again
Stars: ✭ 225 (-7.02%)
Mutual labels:  debug
Cppast.net
CppAst is a .NET library providing a C/C++ parser for header files powered by Clang/libclang with access to the full AST, comments and macros
Stars: ✭ 228 (-5.79%)
Mutual labels:  ast
Php Parser
A PHP parser written in PHP
Stars: ✭ 15,101 (+6140.08%)
Mutual labels:  ast
Gulp Html Replace
Replace build blocks in HTML. Like useref but done right.
Stars: ✭ 222 (-8.26%)
Mutual labels:  gulp-plugin
Ast Query
Tentative to a simple JavaScript AST modification library
Stars: ✭ 221 (-8.68%)
Mutual labels:  ast
Iosdebugdatabase
make it easy to debug databases in iOS applications iOS debug database
Stars: ✭ 219 (-9.5%)
Mutual labels:  debug
Kint
Kint - a powerful and modern PHP debugging tool.
Stars: ✭ 2,582 (+966.94%)
Mutual labels:  debug
Bugsnag Ruby
Bugsnag error monitoring & reporting software for rails, sinatra, rack and ruby
Stars: ✭ 211 (-12.81%)
Mutual labels:  debug
Unified
☔️ interface for parsing, inspecting, transforming, and serializing content through syntax trees
Stars: ✭ 3,036 (+1154.55%)
Mutual labels:  ast
React Performance Observer
Get performance measurements from React Fiber
Stars: ✭ 207 (-14.46%)
Mutual labels:  debug
React Monocle
A developer tool to visualize a React application's component hierarchy.
Stars: ✭ 2,440 (+908.26%)
Mutual labels:  ast
Cli Debugging Cheatsheets
🔥 Collection of command-line debugging cheatsheets for multiple languages and runtimes
Stars: ✭ 239 (-1.24%)
Mutual labels:  debug
Tsutils
utility functions for working with typescript's AST
Stars: ✭ 240 (-0.83%)
Mutual labels:  ast
Simple Pt
Simple Intel CPU processor tracing on Linux
Stars: ✭ 232 (-4.13%)
Mutual labels:  debug

gulp-strip-debug

Strip console, alert, and debugger statements from JavaScript code with strip-debug

Install

$ npm install --save-dev gulp-strip-debug

Usage

const gulp = require('gulp');
const stripDebug = require('gulp-strip-debug');

exports.default = () => (
	gulp.src('src/app.js')
		.pipe(stripDebug())
		.pipe(gulp.dest('dist'))
);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].