We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d08c40 commit ca1a08bCopy full SHA for ca1a08b
scripts/local-e2e.js
@@ -19,7 +19,13 @@ async function main() {
19
await login();
20
const templates = await getTemplates();
21
console.log(templates);
22
- return Promise.all(templates.map(installTemplate));
+ return Promise.all(
23
+ templates
24
+ .filter((template) => {
25
+ return template.path !== 'taro-starter';
26
+ })
27
+ .map(installTemplate)
28
+ );
29
}
30
31
async function forkTemplate() {
0 commit comments