我现在将项目发布到npm里,但是npminstall依然能看见之前的源码,有没有什么办法可以打包出一个混淆过源码的npm包呢?就是让别人可以npminstall使用,但是看见的代码是混淆过的或者我的项目里只有一个js文件需要打包,如何指定只需要单独打包这个js文件呢entry:path.resolve(__dirname,'./src/logic/logic.js'),module:{rules:utils.styleLoaders({sourceMap:config.build.productionSourceMap,extract:true,usePostCSS:true})},devtool:config.build.productionSourceMap?config.build.devtool:false,output:{path:config.build.assetsRoot,filename:utils.assetsPath('js/[name].[chunkhash].js'),chunkFilename:utils.assetsPath('js/[id].[chunkhash].js')}我把webpack.prod.conf改成这样为啥打包出来还是有index.html勒?只想打包logic.js文件该如何配置呢懂了,因为有htmlPlugin,所以打包出来了其他东西
添加回答
举报
0/150
提交
取消