@formatjs/intl-listformat 2.2.3 → 2.2.8
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/CHANGELOG.md +40 -0
- package/dist/polyfill-with-locales-for-test262.js +1 -1
- package/dist/polyfill-with-locales-for-test262.js.map +1 -1
- package/dist/polyfill-with-locales.js +1 -1
- package/dist/polyfill-with-locales.js.map +1 -1
- package/dist/umd/intl-listformat-with-locales.js +1 -1
- package/dist/umd/intl-listformat-with-locales.js.map +1 -1
- package/dist/umd/intl-listformat-with-locales.min.js +1 -1
- package/dist/umd/intl-listformat-with-locales.min.js.map +1 -1
- package/dist/umd/intl-listformat.js +1 -1
- package/dist/umd/intl-listformat.js.map +1 -1
- package/dist/umd/intl-listformat.min.js +1 -1
- package/dist/umd/intl-listformat.min.js.map +1 -1
- package/dist/umd/polyfill-intl-listformat.js +1 -1
- package/dist/umd/polyfill-intl-listformat.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,46 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [2.2.8](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@2.2.7...@formatjs/intl-listformat@2.2.8) (2020-06-23)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @formatjs/intl-listformat
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [2.2.7](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@2.2.6...@formatjs/intl-listformat@2.2.7) (2020-06-20)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @formatjs/intl-listformat
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## [2.2.6](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@2.2.5...@formatjs/intl-listformat@2.2.6) (2020-06-06)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @formatjs/intl-listformat
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## [2.2.5](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@2.2.4...@formatjs/intl-listformat@2.2.5) (2020-06-06)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @formatjs/intl-listformat
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
## [2.2.4](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@2.2.3...@formatjs/intl-listformat@2.2.4) (2020-06-04)
|
|
39
|
+
|
|
40
|
+
**Note:** Version bump only for package @formatjs/intl-listformat
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
|
|
45
|
+
|
|
6
46
|
## [2.2.3](https://github.com/formatjs/formatjs/compare/@formatjs/intl-listformat@2.2.2...@formatjs/intl-listformat@2.2.3) (2020-06-04)
|
|
7
47
|
|
|
8
48
|
**Note:** Version bump only for package @formatjs/intl-listformat
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
var keyLocaleData = foundLocaleData[key];
|
|
216
216
|
invariant(Array.isArray(keyLocaleData), "keyLocaleData for " + key + " must be an array");
|
|
217
217
|
var value = keyLocaleData[0];
|
|
218
|
-
invariant(typeof value === 'string' || value === null,
|
|
218
|
+
invariant(typeof value === 'string' || value === null, "value must be string or null but got " + typeof value + " in key " + key);
|
|
219
219
|
var supportedExtensionAddition = '';
|
|
220
220
|
if (r.extension) {
|
|
221
221
|
var requestedValue = unicodeExtensionValue(r.extension, key);
|