我有以下gulp任务(请参见下文),我正在尝试运行以自动化聚合物构建。但是,我在结果/ build文件夹中看到的只是index.html。没有依赖关系,我认为生成的文件将被称为shared-bundle.html。此外,它没有获取任何我的凉亭依赖项:
const PolymerProject = require('polymer-build').PolymerProject;
const project = new PolymerProject(require('./polymer.json'));
gulp.task('build', () => {
mergeStream(project.sources(), project.dependencies())
.pipe(project.bundler())
.pipe(gulp.dest('./build/'));
});
这是我引用的文档:https://www.npmjs.com/package/polymer-build
我可能缺少什么想法?
答案 0 :(得分:0)
显然我在这里错过了入口点参数:
const project = new PolymerProject({entrypoint: 'my-page.html'});