mirror of https://gitee.com/karson/fastadmin.git
修复windows和unix换行符不同引起的JS、CSS打包压缩失败问题
parent
c129974c12
commit
0a44858c89
|
|
@ -102,7 +102,7 @@ class Min extends Command
|
|||
if ($res == "js")
|
||||
{
|
||||
$content = file_get_contents($from);
|
||||
preg_match("/require\.config\(\{[\n]+(.*?)\n\}\);/is", $content, $matches);
|
||||
preg_match("/require\.config\(\{[\r\n]?[\n]?+(.*?)[\r\n]?[\n]?}\);/is", $content, $matches);
|
||||
if (!isset($matches[1]))
|
||||
{
|
||||
$output->error("js config not found!");
|
||||
|
|
|
|||
Loading…
Reference in New Issue