@azure/app-configuration 1.3.2-alpha.20220321.1 → 1.3.2-alpha.20220401.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 +2 -0
- package/package.json +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -8,6 +8,8 @@
|
|
|
8
8
|
|
|
9
9
|
### Bugs Fixed
|
|
10
10
|
|
|
11
|
+
- Fix an issue where React-Native is loading the wrong file. Adding a `react-native` mapping to point to the ESM entrypoint file. [PR #21119](https://github.com/Azure/azure-sdk-for-js/pull/21119)
|
|
12
|
+
|
|
11
13
|
### Other Changes
|
|
12
14
|
|
|
13
15
|
## 1.3.1 (2021-12-14)
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@azure/app-configuration",
|
|
3
3
|
"author": "Microsoft Corporation",
|
|
4
4
|
"description": "An isomorphic client library for the Azure App Configuration service.",
|
|
5
|
-
"version": "1.3.2-alpha.
|
|
5
|
+
"version": "1.3.2-alpha.20220401.1",
|
|
6
6
|
"sdk-type": "client",
|
|
7
7
|
"keywords": [
|
|
8
8
|
"node",
|
|
@@ -24,6 +24,9 @@
|
|
|
24
24
|
"browser": {
|
|
25
25
|
"./dist-esm/src/internal/cryptoHelpers.js": "./dist-esm/src/internal/cryptoHelpers.browser.js"
|
|
26
26
|
},
|
|
27
|
+
"react-native": {
|
|
28
|
+
"./dist/index.js": "./dist-esm/src/index.js"
|
|
29
|
+
},
|
|
27
30
|
"files": [
|
|
28
31
|
"dist/**/*.js",
|
|
29
32
|
"dist/**/*.js.map",
|