@firebase/database 0.12.1 → 0.12.2-2021912211028
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 +6 -0
- package/dist/index.esm2017.js +3 -1
- package/dist/index.esm2017.js.map +1 -1
- package/dist/index.esm5.js +3 -1
- package/dist/index.esm5.js.map +1 -1
- package/dist/index.node.cjs.js +3 -1
- package/dist/index.node.cjs.js.map +1 -1
- package/dist/index.standalone.js.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Unreleased
|
|
2
2
|
|
|
3
|
+
## 0.12.2-2021912211028
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [`93795c780`](https://github.com/firebase/firebase-js-sdk/commit/93795c7801d6b28ccbbe5855fd2f3fc377b1db5f) [#5596](https://github.com/firebase/firebase-js-sdk/pull/5596) - report build variants for packages
|
|
8
|
+
|
|
3
9
|
## 0.12.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.esm2017.js
CHANGED
|
@@ -4,7 +4,7 @@ import { stringify, jsonEval, contains, assert, base64, stringToByteArray, Sha1,
|
|
|
4
4
|
import { Logger, LogLevel } from '@firebase/logger';
|
|
5
5
|
|
|
6
6
|
const name = "@firebase/database";
|
|
7
|
-
const version = "0.12.
|
|
7
|
+
const version = "0.12.2-2021912211028";
|
|
8
8
|
|
|
9
9
|
/**
|
|
10
10
|
* @license
|
|
@@ -13762,6 +13762,8 @@ function registerDatabase(variant) {
|
|
|
13762
13762
|
return repoManagerDatabaseFromApp(app, authProvider, appCheckProvider, url);
|
|
13763
13763
|
}, "PUBLIC" /* PUBLIC */).setMultipleInstances(true));
|
|
13764
13764
|
registerVersion(name, version, variant);
|
|
13765
|
+
// BUILD_TARGET will be replaced by values like esm5, esm2017, cjs5, etc during the compilation
|
|
13766
|
+
registerVersion(name, version, 'esm2017');
|
|
13765
13767
|
}
|
|
13766
13768
|
|
|
13767
13769
|
/**
|