@firebase/database 0.12.1 → 0.12.2-canary.31bd6f27f

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
@@ -1,5 +1,11 @@
1
1
  # Unreleased
2
2
 
3
+ ## 0.12.2
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
@@ -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.1";
7
+ const version = "0.12.2-canary.31bd6f27f";
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
  /**