File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -381,7 +381,7 @@ function dist_src() {
381
381
function dist_node_modules_css ( ) {
382
382
return gulp
383
383
. src ( "./node_modules/**/*.min.css" )
384
- . pipe ( gulp . dest ( `${ DIST_DIR } node_modules` ) ) ;
384
+ . pipe ( gulp . dest ( `${ DIST_DIR } node_modules/ ` ) ) ;
385
385
}
386
386
387
387
function dist_ol_css ( ) {
@@ -425,9 +425,12 @@ function dist_rollup() {
425
425
const vue = require ( 'rollup-plugin-vue' ) ;
426
426
const rollupReplace = require ( '@rollup/plugin-replace' ) ;
427
427
428
+ const isAndroid = getPlatforms ( ) . includes ( 'android' ) ;
429
+ const strictDeprecations = isAndroid ? false : true ;
430
+
428
431
return rollup
429
432
. rollup ( {
430
- strictDeprecations : true ,
433
+ strictDeprecations : strictDeprecations ,
431
434
input : {
432
435
// For any new file migrated to modules add the output path
433
436
// in dist on the left, on the right it's input file path.
Original file line number Diff line number Diff line change 6
6
min-height : 100% ;
7
7
height : 100% ;
8
8
overflow-y : auto ;
9
- background-color : #2e2e2e ;
10
9
}
11
10
.content_top {
12
11
height : 140px ;
You can’t perform that action at this time.
0 commit comments