微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

node.js – Nodejs grunt obfuscate

我正在使用Nodejs grunt模块.我知道grunt min选项缩小文件.但现在我需要混淆谷歌闭包编译器等文件. grunt有这个功能吗?

解决方法

grunt min任务允许您设置UglifyJS(grunt min工具)选项,这可以让您更好地控制目标文件修改和压缩方式.

https://github.com/cowboy/grunt/blob/master/docs/task_min.md#specifying-uglifyjs-options

https://github.com/mishoo/UglifyJS

来自grunt task_min doc:

Specifying UglifyJS options

In this example,custom UglifyJS mangle,squeeze and codegen options are
specified. The listed methods and their expected options are explained in
the API section of the UglifyJS documentation:

The mangle object is passed into the pro.ast_mangle method.
The squeeze object is passed into the pro.ast_squeeze method.
The codegen object is passed into the pro.gen_code method.

// Project configuration.
grunt.initConfig({
  min: {
    dist: {
      src: ['dist/built.js'],dest: 'dist/built.min.js'
    }
  },uglify: {
    mangle: {toplevel: true},squeeze: {dead_code: false},codegen: {quote_keys: true}
  }
});

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐