@tarojs/helper 3.4.8 → 3.4.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/utils.js +3 -1
- package/package.json +3 -3
package/dist/utils.js
CHANGED
|
@@ -522,7 +522,9 @@ function analyzeImport(filePath) {
|
|
|
522
522
|
if (!dep)
|
|
523
523
|
return;
|
|
524
524
|
importPaths.push(dep);
|
|
525
|
-
|
|
525
|
+
if (path.extname(dep) !== '.json') {
|
|
526
|
+
importPaths = importPaths.concat(analyzeImport(dep));
|
|
527
|
+
}
|
|
526
528
|
}
|
|
527
529
|
});
|
|
528
530
|
return importPaths;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tarojs/helper",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.9",
|
|
4
4
|
"description": "Taro Helper",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "types/index.d.ts",
|
|
@@ -40,7 +40,7 @@
|
|
|
40
40
|
"@babel/preset-typescript": "^7.14.5",
|
|
41
41
|
"@babel/register": "^7.14.5",
|
|
42
42
|
"@babel/runtime": "^7.14.5",
|
|
43
|
-
"@tarojs/taro": "3.4.
|
|
43
|
+
"@tarojs/taro": "3.4.9",
|
|
44
44
|
"chalk": "3.0.0",
|
|
45
45
|
"chokidar": "^3.3.1",
|
|
46
46
|
"cross-spawn": "^7.0.3",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"resolve": "^1.6.0",
|
|
52
52
|
"yauzl": "2.10.0"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "6461e41999b9e2b26a7ec30b8979fa8b6e94198d"
|
|
55
55
|
}
|