akfun 5.1.18 → 5.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -203,7 +203,6 @@ class ConfigValidator {
|
|
|
203
203
|
*/
|
|
204
204
|
_validateDev(dev) {
|
|
205
205
|
if (!dev) {
|
|
206
|
-
this.errors.push('dev 配置缺失');
|
|
207
206
|
return;
|
|
208
207
|
}
|
|
209
208
|
|
|
@@ -245,7 +244,6 @@ class ConfigValidator {
|
|
|
245
244
|
*/
|
|
246
245
|
_validateBuild(build) {
|
|
247
246
|
if (!build) {
|
|
248
|
-
this.errors.push('build 配置缺失');
|
|
249
247
|
return;
|
|
250
248
|
}
|
|
251
249
|
|