prebid.js 5.20.0 → 6.0.0
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/.babelrc.js +3 -6
- package/README.md +3 -1
- package/browsers.json +0 -8
- package/package.json +1 -1
- package/wdio.conf.js +1 -1
package/.babelrc.js
CHANGED
package/README.md
CHANGED
|
@@ -59,6 +59,8 @@ module.exports = {
|
|
|
59
59
|
loader: 'babel-loader',
|
|
60
60
|
// presets and plugins for Prebid.js must be manually specified separate from your other babel rule.
|
|
61
61
|
// this can be accomplished by requiring prebid's .babelrc.js file (requires Babel 7 and Node v8.9.0+)
|
|
62
|
+
// as of Prebid 6, babelrc.js only targets modern browsers. One can change the targets and build for
|
|
63
|
+
// older browsers if they prefer, but integration tests on ie11 were removed in Prebid.js 6.0
|
|
62
64
|
options: require('prebid.js/.babelrc.js')
|
|
63
65
|
}
|
|
64
66
|
}
|
|
@@ -314,7 +316,7 @@ For instructions on writing tests for Prebid.js, see [Testing Prebid.js](http://
|
|
|
314
316
|
|
|
315
317
|
### Supported Browsers
|
|
316
318
|
|
|
317
|
-
Prebid.js is supported on IE11 and modern browsers.
|
|
319
|
+
Prebid.js is supported on IE11 and modern browsers until 5.x. 6.x+ transpiles to target >0.25%; not Opera Mini; not IE11.
|
|
318
320
|
|
|
319
321
|
### Governance
|
|
320
322
|
Review our governance model [here](https://github.com/prebid/Prebid.js/tree/master/governance.md).
|
package/browsers.json
CHANGED
|
@@ -15,14 +15,6 @@
|
|
|
15
15
|
"device": null,
|
|
16
16
|
"os": "Windows"
|
|
17
17
|
},
|
|
18
|
-
"bs_ie_11_windows_10": {
|
|
19
|
-
"base": "BrowserStack",
|
|
20
|
-
"os_version": "10",
|
|
21
|
-
"browser": "ie",
|
|
22
|
-
"browser_version": "11.0",
|
|
23
|
-
"device": null,
|
|
24
|
-
"os": "Windows"
|
|
25
|
-
},
|
|
26
18
|
"bs_chrome_90_windows_10": {
|
|
27
19
|
"base": "BrowserStack",
|
|
28
20
|
"os_version": "10",
|
package/package.json
CHANGED
package/wdio.conf.js
CHANGED
|
@@ -9,7 +9,7 @@ function getCapabilities() {
|
|
|
9
9
|
return platformMap[os];
|
|
10
10
|
}
|
|
11
11
|
|
|
12
|
-
// only
|
|
12
|
+
// only Chrome 80 & Firefox 73 run as part of functional tests
|
|
13
13
|
// rest of the browsers are discarded.
|
|
14
14
|
delete browsers['bs_chrome_79_windows_10'];
|
|
15
15
|
delete browsers['bs_firefox_72_windows_10'];
|