intl-messageformat 8.2.0 → 8.2.1

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 CHANGED
@@ -3,6 +3,17 @@
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
+ ## [8.2.1](https://github.com/formatjs/formatjs/compare/intl-messageformat@8.2.0...intl-messageformat@8.2.1) (2020-03-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **intl-messageformat:** export Error obj ([614debb](https://github.com/formatjs/formatjs/commit/614debb80f654966bc3ba832d6e5603be88da3d9))
12
+
13
+
14
+
15
+
16
+
6
17
  # [8.2.0](https://github.com/formatjs/formatjs/compare/intl-messageformat@8.1.0...intl-messageformat@8.2.0) (2020-03-05)
7
18
 
8
19
 
package/dist/index.d.ts CHANGED
@@ -1,4 +1,5 @@
1
1
  import IntlMessageFormat from './core';
2
2
  export * from './formatters';
3
3
  export * from './core';
4
+ export * from './error';
4
5
  export default IntlMessageFormat;
package/dist/index.js CHANGED
@@ -11,4 +11,5 @@ Object.defineProperty(exports, "__esModule", { value: true });
11
11
  var core_1 = require("./core");
12
12
  __export(require("./formatters"));
13
13
  __export(require("./core"));
14
+ __export(require("./error"));
14
15
  exports.default = core_1.default;
@@ -3878,7 +3878,10 @@
3878
3878
  See the accompanying LICENSE file for terms.
3879
3879
  */
3880
3880
 
3881
+ exports.FormatError = FormatError;
3881
3882
  exports.IntlMessageFormat = IntlMessageFormat;
3883
+ exports.InvalidValueError = InvalidValueError;
3884
+ exports.MissingValueError = MissingValueError;
3882
3885
  exports.createDefaultFormatters = createDefaultFormatters;
3883
3886
  exports.default = IntlMessageFormat;
3884
3887
  exports.formatToParts = formatToParts;