我开始的一个小项目使用声明 const 变量的节点模块(通过 npm 安装).运行测试这个项目很好,但是执行UglifyJS时browserify失败了.
A small project I started make use a node module (installed via npm) that declares const variables. Running and testing this project is well, but browserify fails when UglifyJS is executed.
意外标记:关键字(const)
Unexpected token: keyword (const)
这是一个通用的 Gulp 文件,我已经成功地将它用于过去的一些其他项目而没有这个问题(即没有那个特定的节点模块).
Here is a generic Gulp file that I have successfully been using for a few other past projects without this issue (i.e. without that particular node module).
'use strict';
const browserify = require('browserify');
const gulp = require('gulp');
const source = require('vinyl-source-stream');
const derequire = require('gulp-derequire');
const buffer = require('vinyl-buffer');
const uglify = require('gulp-uglify');
const sourcemaps = require('gulp-sourcemaps');
const gutil = require('gulp-util');
const path = require('path');
const pkg = require('./package');
const upperCamelCase = require('uppercamelcase');
const SRC_PATH = path.dirname(pkg.main);
const DIST_PATH = path.dirname(pkg.browser);
const INPUT_FILE = path.basename(pkg.main);
const OUTPUT_FILE = path.basename(pkg.browser);
const MODULE_NAME = upperCamelCase(pkg.name);
gulp.task('default', () => {
// set up the browserify instance on a task basis
var b = browserify({
entries: INPUT_FILE,
basedir: SRC_PATH,
transform: ['babelify'],
standalone: MODULE_NAME,
debug: true
});
return b.bundle()
.pipe(source(OUTPUT_FILE))
.pipe(buffer())
.pipe(derequire())
.pipe(sourcemaps.init({loadMaps: true}))
.pipe(uglify())
.on('error', gutil.log)
.pipe(sourcemaps.write('.'))
.pipe(gulp.dest(DIST_PATH))
;
});
我已尝试通过将 npm 安装的模块中的所有 const 替换为 var 来解决此问题,一切都很好.所以我不理解失败.
I have tried fixing this by replace all const to var in that npm-installed module, and everything is fine. So I do not understand the failure.
const 有什么问题?除非有人使用 IE10,否则所有主流浏览器都支持这种语法.
What's wrong with const? Unless someone uses IE10, all major browsers support this syntax.
有没有办法解决这个问题而无需更改该节点模块?
Is there a way to fix this without requiring a change to that node module?
我已经暂时(或永久)用 Butternut 替换了 UglifyJS,并且似乎可以工作.
I have temporarily (or permanently) replaced UglifyJS with Butternut and seem to work.
由于ChrisR 提到,UglifyJS 不支持 ES6完全没有.
As ChrisR mentionned, UglifyJS does not support ES6 at all.
ES6 需要使用 terser-webpack-plugin (webpack@5会使用这个插件进行丑化)
You need to use terser-webpack-plugin for ES6 (webpack@5 will use this plugin for uglification)
npm install terser-webpack-plugin --save-dev
然后在你的 plugins 数组中定义
Then define in your plugins array
const TerserPlugin = require('terser-webpack-plugin')
new TerserPlugin({
parallel: true,
terserOptions: {
ecma: 6,
},
}),
来源
这篇关于UglifyJS 抛出意外的标记:keyword (const) with node_modules的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
Browserify,Babel 6,Gulp - 传播运算符上的意外令牌Browserify, Babel 6, Gulp - Unexpected token on spread operator(Browserify,Babel 6,Gulp - 传播运算符上的意外令牌)
是否可以将标志传递给 Gulp 以使其以不同的方式Is it possible to pass a flag to Gulp to have it run tasks in different ways?(是否可以将标志传递给 Gulp 以使其以不同的方式运行任务
为什么我们需要在全局和本地安装 gulp?Why do we need to install gulp globally and locally?(为什么我们需要在全局和本地安装 gulp?)
如何一个接一个地依次运行 Gulp 任务How to run Gulp tasks sequentially one after the other(如何一个接一个地依次运行 Gulp 任务)
由于 MIME 类型而未加载样式表Stylesheet not loaded because of MIME-type(由于 MIME 类型而未加载样式表)
打开 Javascript 文件时 Visual Studio 2015 崩溃Visual Studio 2015 crashes when opening Javascript files(打开 Javascript 文件时 Visual Studio 2015 崩溃)