Comparing version 1.0.21 to 1.0.22
@@ -0,1 +1,8 @@ | ||
## 2013.11.28, Version 1.0.22(Stable) | ||
### bugfix | ||
- 修复对象传参数中的一个bug | ||
- fix issue #36 | ||
## 2013.11.24, Version 1.0.21(Stable) | ||
@@ -2,0 +9,0 @@ |
@@ -66,2 +66,3 @@ /** | ||
traverse = inputFilePath.traverse; | ||
inputFilePath = inputFilePath.src; | ||
} | ||
@@ -68,0 +69,0 @@ |
@@ -427,3 +427,6 @@ /** | ||
} | ||
outputPath = path.resolve(outputDir, relativePath + '.' + mod.type); | ||
if(mod.type === 'js'){ | ||
relativePath = relativePath + '.js'; | ||
} | ||
outputPath = path.resolve(outputDir, relativePath); | ||
utils.mkdirsSync(path.dirname(outputPath)); | ||
@@ -430,0 +433,0 @@ } |
{ | ||
"name":"kmc", | ||
"version":"1.0.21", | ||
"version":"1.0.22", | ||
"description":"KISSY Module Compiler", | ||
@@ -5,0 +5,0 @@ "author":"daxingplay <daxingplay@gmail.com>", |
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
113253
3121