登录 注册
当前位置:主页 > 资源下载 > 15 > gulp-strip-debug可从JavaScript代码中移除控制台、警告及调试器语句

gulp-strip-debug可从JavaScript代码中移除控制台、警告及调试器语句

  • 更新:2024-10-22 23:24:20
  • 大小:4KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

gulp-strip-debug 使用从JavaScript代码中剥离console , alert和debugger语句 安装 $ npm install --save-dev gulp-strip-debug 用法 const gulp = require ( 'gulp' ) ; const stripDebug = require ( 'gulp-strip-debug' ) ; exports . default = ( ) => ( gulp . src ( 'src/app.js' ) . pipe ( stripDebug ( ) ) . pipe ( gulp . dest ( 'dist' ) ) ) ;