fix removeLicenceComments breaking packaged file

pull/223/head
nightwing 2015-10-26 02:17:25 +04:00
rodzic a11af58899
commit 68046d4445
1 zmienionych plików z 5 dodań i 2 usunięć

Wyświetl plik

@ -346,8 +346,11 @@ function removeUseStrict(module) {
}
function removeLicenceComments(module) {
if (/\.(js|jsx|css|less)/.test(module.path))
module.source = module.source.replace(/(?:(;)|\n|^)\s*\/\*[\d\D]*?\*\/|(\n|^)\s*\/\/.*/g, "$1");
if (/\.(js|jsx|css|less)/.test(module.path)) {
module.source = module.source.replace(/(\n|;|^|,)(?:[ \t]*(?:\/\*(?:[^*]|[*](?![/]))*?\*\/|\/\/.*\n))+(\n?)/gm, function(match, $1, $2) {
return $1 == $2 ? $1 : $1 + $2;
});
}
}
function removeLicenceCommentsKeepLines(module) {
if (/\.(js|jsx|css|less)/.test(module.path)) {