File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,28 @@ module.exports = function (config) {
67
67
/***common的源码***/
68
68
'../src/common/**/*.js' ,
69
69
/**测试文件**/
70
- './test-main-common.js'
70
+ './test-main-common.js' ,
71
+
72
+ /***leaflet的源码***/
73
+ { pattern : './libs/workers/TurfWorkerForTest.js' , include : false } ,
74
+ { pattern : '../node_modules/leaflet/dist/leaflet.css' , include : false } ,
75
+ { pattern : '../src/leaflet/**/**/*.css' , include : false } ,
76
+ '../src/leaflet/**/!(index).js' ,
77
+ /**测试文件**/
78
+ './test-main-leaflet.js' ,
79
+
80
+ /***openlayers的源码***/
81
+ { pattern : '../node_modules/ol/ol.css' , include : false } ,
82
+ { pattern : '../src/openlayers/**/**/*.css' , include : false } ,
83
+ '../src/openlayers/**/!(index).js' ,
84
+ /**测试文件**/
85
+ './test-main-openlayers.js' ,
86
+
87
+ /***mapboxgl***/
88
+ { pattern : '../node_modules/mapbox-gl/dist/mapbox-gl.css' , include : false } ,
89
+ '../src/mapboxgl/**/!(index).js' ,
90
+ /**测试文件**/
91
+ './test-main-mapboxgl.js'
71
92
] ,
72
93
73
94
// list of files to exclude 测试时排除的文件
You can’t perform that action at this time.
0 commit comments