Browse Source

fix eslint error

callmewhy 8 năm trước cách đây
mục cha
commit
8e8c714f00
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  1. 2 2
      build/bin/gen-cssfile.js

+ 2 - 2
build/bin/gen-cssfile.js

@@ -16,8 +16,8 @@ function fileExists(filePath) {
 }
 
 themes.forEach((theme) => {
-  var indexContent = '@import "./base.css";\n'
-  Components.forEach(function (key) {
+  var indexContent = '@import "./base.css";\n';
+  Components.forEach(function(key) {
     var fileName = key + '.css';
     indexContent += '@import "./' + fileName + '";\n';
     var filePath = path.resolve(basepath, theme, 'src', fileName);