问题标签 [uglifyjs]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
8 回答
50875 浏览

javascript - Angular.module 缩小错误

花费最宝贵的时间试图弄清楚为什么缩小不起作用。

根据网络上的众多建议,我通过数组对象在函数之前注入了我的提供者,但仍然是“未知提供者:aProvider <- a”

常规的:

缩小:

任何建议都会非常感激!

0 投票
4 回答
1474 浏览

nginx - 使用 ngx_pagespeed 或 mod_pagespeed 而不是使用命令行工具缩小/优化 javascript 和 CSS

ngx_pagespeed、mod_pagespeed 和其他在服务器级别优化 javascript/css 的模块可以替代 uglifyjs 或 yui-compressor 等命令行工具吗?

0 投票
1 回答
14982 浏览

jquery - Codekit Uglify.js 'Unexpected token punc' 错误

我不确定我的语法/意外令牌错误在哪里

我在 jsfiddle 上的完整 jQuery 函数:http: //jsfiddle.net/leongaban/gmRUa/


我得到的错误:

在此处输入图像描述

对应于我的 jsfiddle的第 30 行} catch {

你注意到是什么导致了那里的错误吗?



功能:

0 投票
1 回答
1247 浏览

javascript - uglifyjs on client-side javascript ? (or an alternative parser)

I need to parse (and possibly modify) a js expression from within javascript (Specifically i want to markup some eval() expressions before the actual eval)

I really like the UglifyJS README examples, but alas, it needs node.js Is there any way to get this to run on clientside browser?!

(i am not really a js expert so if i am completely misunderstanding this platform thingy please let me know)

Failing that, is there an alternative js parser ? Currently i am looking LintJS or esprima or something like that

0 投票
3 回答
490 浏览

gruntjs - 使用 uglify grunt 任务搞砸了 selectivizr

我有一个 Yeoman 项目,它在其 Javascript 文件上使用grunt-contrib-uglify 。在 Selectvizr 库上运行时(使用 Bower 引入),生成的文件如下所示:

我认为这是因为如果浏览器不是 IE,Selectivizr 设置为不执行任何操作,所以也许在 Grunt 执行上下文中它正在这样做?

所以我想知道是否有可能让 Uglify 在 Selectivizr 上运行并产生可用的东西?

0 投票
1 回答
2551 浏览

symfony - 如何使用 uglifyjs 将所有 js 文件与资产库合并为一个 [symfony]

代码有什么问题

我想在加载时将 a.js 和 b.js 合二为一

配置.yml

查看文件

控制器

0 投票
2 回答
656 浏览

abstract-syntax-tree - Mozilla SpiderMonkey AST 完整结构

我在哪里可以找到Mozilla SpiderMonkey 抽象语法树的完整结构?

就像 UglifyJS 的这个:http: //lisperator.net/uglifyjs/ast

0 投票
1 回答
2079 浏览

requirejs - 使用 r.js 进行 Uglify 会引发解析错误

我正在使用 r.js 来优化/丑化我使用 RequireJS 的 JavaScript 代码。

我的模块之一是 polyfill 模块:

该模块在尝试对其进行丑化时会导致 r.js 抛出解析错误,并说:

替换var isPolyfillNeeded = function ()为 时function isPolyfillNeeded(),它工作正常。这是为什么?

0 投票
1 回答
278 浏览

javascript - UglifyJS 转换 javascript 代码

我第一次尝试使用 UglifyJS。我想使用 UglifyJS 转换下面的代码

产生低于输出

我尝试过的如下

但这给出了以下输出

0 投票
1 回答
7596 浏览

gruntjs - 如何使用 grunt-UglifyJS 和 sourcemaps?

当我使用 Grunt 和 UglifyJS Grunt 任务时,我正在尝试让 sourcemaps 玩得很好。

这是当前的任务:

有什么问题?

sourcemap 已生成,但 Chrome 正在错误的位置(即dist/dist/video.min.js.map)搜索 sourcemap。我知道这一点,因为我在控制台中得到 404。

所以我编辑dist/video.min.js并更改sourceMappingURL为指向正确的位置。现在,源映射已加载,但正在完全错误的地方寻找 video.js:(又是dist/javascripts/video.js那个 dist!)

所以基本上现在我没有任何想法,只是在没有运气的情况下戳 gruntfile。

有任何想法吗?谢谢!