magix-combine
Advanced tools
Comparing version 3.12.0 to 3.12.1
@@ -0,1 +1,4 @@ | ||
## 3.12.1 | ||
1. 修正双`@`转义时添加到依赖中被解析的`bug` | ||
## 3.12.0 | ||
@@ -2,0 +5,0 @@ 1. 优化依赖项的处理,对于组件添加依赖,对于其它`view`则在用到时才加载 |
{ | ||
"name": "magix-combine", | ||
"version": "3.12.0", | ||
"version": "3.12.1", | ||
"description": "合并Magix View的html,js,css成一个js文件,并检测html,js,css中可能存在的问题", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -123,3 +123,3 @@ /* | ||
if (req.charAt(2) == '@' && req.lastIndexOf('@') == 2) { | ||
e.requires[i] = req.substring(0, 1) + req.substring(2); | ||
e.requires[i] = req;// req.substring(0, 1) + req.substring(2); | ||
} else if (req.lastIndexOf('@') == 1) { | ||
@@ -126,0 +126,0 @@ e.requires[i] = atpath.resolvePath(req, e.moduleId); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
553458