在node.js项目中使用babel时,我试图将所有文件捆绑到一个编译和缩小的js文件中。
我用gulp-babel 6.1.2运行babel,我已经安装了ES-2015预设(6.13.2)。
我正在用我的文件构建一个包,并提前键入0.11.1,问题是当运行gulp任务并通过babel管道时,键入的功能不起作用(未捕获的TypeError:不能设置属性'Bloodhound'为undefined)。如果我再次运行该任务,从管道中删除babel命令,一切正常。
我知道我可以构建两个单独的包,一个用于我的文件,另一个用于外部文件,但我想知道为什么它会失败。
My gulp task:
gulp.task('bundleCheckoutDesktopJs', function () {
var js = ['./src/js/project/external/*', './src/js/project/common/*', './src/js/project/*'];
return gulp.src(js)
.pipe(babel())
.pipe(concat('project.min.js'))
.pipe(uglify())
.pipe(gulp.dest('statics/js/'));
});
我调查了一段时间后取得的结果(typeahead.js):
(function(root, factory) {
if (typeof define === "function" && define.amd) {
define("bloodhound", [ "jquery" ], function(a0) {
return root["Bloodhound"] = factory(a0);
});
} else if (typeof exports === "object") {
module.exports = factory(require("jquery"));
} else {
// Root seems to be undefined here....
root["Bloodhound"] = factory(jQuery);
}
})
插件代码:在立即调用的函数中,将第一个参数设为window
。如果使用箭头函数,可能找不到this
上下文。
/*!
* typeahead.js 0.11.1
* https://github.com/twitter/typeahead.js
* Copyright 2013-2015 Twitter, Inc. and other contributors; Licensed MIT
*/
(function(root, factory) {
if (typeof define === "function" && define.amd) {
define("bloodhound", [ "jquery" ], function(a0) {
return root["Bloodhound"] = factory(a0);
});
} else if (typeof exports === "object") {
module.exports = factory(require("jquery"));
} else {
root["Bloodhound"] = factory(jQuery);
}
})(this, function($) { // here replace 'this' with window