debugdetect
v1.0.0
Published
Used to detect debug fragments in the code to prevent forgetting to remove these debug codes during the build process.
Downloads
2
Readme
简单的webpack插件 目的在于在开发时容易将debug的代码忘记修改回去 在打包构建时,能够抛出异常
使用: webpack插件配置中引入 例vue3中: module.exports = defineConfig({ configureWebpack: { plugins: [ new DebugDetect({ text:'//czh-debug', }) ] } }) 其中text:'//czh-debug',表示检测的注释内容 如果某个文件中存在"//czh-debug"注释,打包时报错