mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
Starting with 7.9.0 we will be dropping support for IE11. Updating the config to reflect this should minimize the bundle sizes. Signed-off-by: Tyler Smalley <tyler.smalley@elastic.co>
This commit is contained in:
parent
88e716e3fc
commit
5a080cedee
2 changed files with 5 additions and 12 deletions
|
@ -1,7 +1,9 @@
|
|||
[production]
|
||||
last 2 versions
|
||||
> 5%
|
||||
Safari 7 # for PhantomJS support: https://github.com/elastic/kibana/issues/27136
|
||||
last 2 Firefox versions
|
||||
last 2 Chrome versions
|
||||
last 2 Safari versions
|
||||
> 0.25%
|
||||
not ie 11
|
||||
|
||||
[dev]
|
||||
last 1 chrome versions
|
||||
|
|
|
@ -50,9 +50,6 @@ it('builds light themed SASS', async () => {
|
|||
expect(readFileSync(targetPath, 'utf8').replace(/(\/\*# sourceMappingURL=).*( \*\/)/, '$1...$2'))
|
||||
.toMatchInlineSnapshot(`
|
||||
"foo bar {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
background: #e6f0f8 url(./images/img.png) url(ui/assets/favicons/favicon.ico); }
|
||||
/*# sourceMappingURL=... */"
|
||||
|
@ -75,9 +72,6 @@ it('builds dark themed SASS', async () => {
|
|||
expect(readFileSync(targetPath, 'utf8').replace(/(\/\*# sourceMappingURL=).*( \*\/)/, '$1...$2'))
|
||||
.toMatchInlineSnapshot(`
|
||||
"foo bar {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
background: #232635 url(./images/img.png) url(ui/assets/favicons/favicon.ico); }
|
||||
/*# sourceMappingURL=... */"
|
||||
|
@ -104,9 +98,6 @@ it('rewrites url imports', async () => {
|
|||
expect(readFileSync(targetPath, 'utf8').replace(/(\/\*# sourceMappingURL=).*( \*\/)/, '$1...$2'))
|
||||
.toMatchInlineSnapshot(`
|
||||
"foo bar {
|
||||
display: -webkit-box;
|
||||
display: -webkit-flex;
|
||||
display: -ms-flexbox;
|
||||
display: flex;
|
||||
background: #232635 url(__REPLACE_WITH_PUBLIC_PATH__foo/bar/images/img.png) url(__REPLACE_WITH_PUBLIC_PATH__ui/favicons/favicon.ico); }
|
||||
/*# sourceMappingURL=... */"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue