Skip to content

Commit

Permalink
ci(scripts): update ci scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
binggg committed Sep 17, 2020
1 parent 015947b commit b4c584f
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions scripts/local-e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,12 @@ async function main() {
await login();
const templates = await getTemplates();
console.log(templates);
return Promise.all(
templates
.filter((template) => {
return template.path !== 'taro-starter';
})
.map(installTemplate)
);

for (let template of templates) {
if (template.path !== 'taro-starter') {
await installTemplate(template);
}
}
}

async function forkTemplate() {
Expand Down

0 comments on commit b4c584f

Please sign in to comment.