You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -129,30 +119,10 @@ async function initialize() {
129
119
}
130
120
}
131
121
}));
132
-
133
-
returnnewPromise((resolve,reject)=>{
134
-
if(args.watch){
135
-
webpack(webpackConfigs).watch({},(err,stats)=>{
136
-
if(err){
137
-
console.log(err);
138
-
reject();
139
-
}else{
140
-
console.log(stats.toString());
141
-
resolve(builtinExtensions);
142
-
}
143
-
});
144
-
}else{
145
-
webpack(webpackConfigs).run((err,stats)=>{
146
-
if(err){
147
-
console.log(err);
148
-
reject();
149
-
}else{
150
-
console.log(stats.toString());
151
-
resolve(builtinExtensions);
152
-
}
153
-
});
154
-
}
155
-
});
122
+
if(unbuiltExensions.length){
123
+
fancyLog(`${ansiColors.yellow('Warning')}: Make sure to run ${ansiColors.cyan('yarn gulp watch-web')}\nCould not find the following browser main files: \n${unbuiltExensions.join('\n')}`);
0 commit comments