mirror of
				https://github.com/ZetaKebab/kesper.git
				synced 2025-11-04 08:09:49 +00:00 
			
		
		
		
	Fixed deprecated autoprefixer config warning when running build tasks
no issue Passing browser options directly into `autoprefixer()` has been deprecated in favour of general browserslist configuration in `package.json` or a `.browserslistrc` config file - moved autoprefixer browsers list into `browserslist` config in `package.json` - updated `autoprefixer` version
This commit is contained in:
		
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							@@ -43,7 +43,7 @@ function css(done) {
 | 
				
			|||||||
        easyimport,
 | 
					        easyimport,
 | 
				
			||||||
        customProperties({preserve: false}),
 | 
					        customProperties({preserve: false}),
 | 
				
			||||||
        colorFunction(),
 | 
					        colorFunction(),
 | 
				
			||||||
        autoprefixer({browsers: ['last 2 versions']}),
 | 
					        autoprefixer(),
 | 
				
			||||||
        cssnano()
 | 
					        cssnano()
 | 
				
			||||||
    ];
 | 
					    ];
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -46,7 +46,7 @@
 | 
				
			|||||||
    "contributors": "https://github.com/TryGhost/Casper/graphs/contributors",
 | 
					    "contributors": "https://github.com/TryGhost/Casper/graphs/contributors",
 | 
				
			||||||
    "devDependencies": {
 | 
					    "devDependencies": {
 | 
				
			||||||
        "@tryghost/release-utils": "0.3.2",
 | 
					        "@tryghost/release-utils": "0.3.2",
 | 
				
			||||||
        "autoprefixer": "9.6.1",
 | 
					        "autoprefixer": "9.6.5",
 | 
				
			||||||
        "beeper": "2.0.0",
 | 
					        "beeper": "2.0.0",
 | 
				
			||||||
        "cssnano": "4.1.10",
 | 
					        "cssnano": "4.1.10",
 | 
				
			||||||
        "gscan": "3.0.0",
 | 
					        "gscan": "3.0.0",
 | 
				
			||||||
@@ -83,5 +83,8 @@
 | 
				
			|||||||
                "width": 2000
 | 
					                "width": 2000
 | 
				
			||||||
            }
 | 
					            }
 | 
				
			||||||
        }
 | 
					        }
 | 
				
			||||||
    }
 | 
					    },
 | 
				
			||||||
 | 
					    "browserslist": [
 | 
				
			||||||
 | 
					        "last 2 versions"
 | 
				
			||||||
 | 
					    ]
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user