有没有办法在ES6 /ES 2015中使用吞入式内联源?
因此,基本上我需要导入inlineScript.js中的其他节点样式JS文件,如https://github.com/fmal/gulp-inline-source/blob/master/README.md中的示例所示
尝试使用gulp进行browserify,但在导入其他模块的脚本的inlinesource任务中遇到问题。
上下文:我需要我的构建文件夹JS作为内嵌在HTML中。但其中一些JS导入其他JS模块。
下面是inlineScript.js
中的内容
import bar from './bar';
function component() {
var element = document.createElement('div');
element.innerHTML = 'Hello Gulp!!';
return element;
}
document.body.appendChild(component());
bar();
在bar.js
中
export default function bar() {
console.log('gulp bar js');
}
我只想在HTML中使用inlineScript.js
与inline
属性,但需要在bar.js
中导入最终内联脚本的代码。
1条答案
按热度按时间2wnc66cl1#
我知道这是个老帖子。
你试过https://github.com/exuanbo/gulp-inline-source-html了吗?
在自述文件中,它指出
This plugin is based on fmal/gulp-inline-source, which is no longer maintained. It now supports Gulp.js v4 and ES6 / ES2015.
为我工作,干杯