gpt4 book ai didi

JavaScript-Gulp/浏览器化 : SyntaxError: Unexpected token

转载 作者:搜寻专家 更新时间:2023-11-01 05:00:29 24 4
gpt4 key购买 nike

无论出于何种原因,我的 browserifygulp 停止工作。例如,这是我的 gulp js 脚本,用于捆绑我的 javascript。

gulp.task('js', function() {
gulp.src('src/js/*.js')
.pipe(plumber())
.pipe(gulp.dest('js'));
return browserify('./src/js/main', { debug: true })
.bundle()
.pipe(source('bundle.js'))
/* .pipe(streamify(uglify()))*/
.pipe(gulp.dest('.'))
.pipe(notify({ message: 'JavaScript has been bundled with Browserify!'}));
// .pipe(livereload());
});

这里是main.js:

var ajaxChng = require('./ajax-changelog');
ajaxChng();

src/js/ajax-changelog.js 里面是这样的:

module.exports = {
console.log('Hello World');
};

但是当我执行 gulp js 时,我得到:

λ gulp js
[19:11:50] Using gulpfile c:\wamp\www\osrsmap\gulpfile.js
[19:11:50] Starting 'js'...

events.js:85
throw er; // Unhandled 'error' event
^
SyntaxError: Unexpected token

...我做错了什么?

最佳答案

等等...这不是有效的 javascript:

module.exports = {
console.log('Hello World');
};

也许你是这个意思?

module.exports = function () {
console.log('Hello World');
};

关于JavaScript-Gulp/浏览器化 : SyntaxError: Unexpected token,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29088595/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com