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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "akfun",
3
- "version": "5.1.18",
3
+ "version": "5.1.19",
4
4
  "description": "前端脚手架:支持Vue技术栈和react技术栈",
5
5
  "keywords": [
6
6
  "前端工程",
@@ -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