@react-native-firebase/perf 12.7.4 → 12.9.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,22 @@
|
|
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
|
+
## [12.9.1](https://github.com/invertase/react-native-firebase/compare/v12.9.0...v12.9.1) (2021-10-10)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
9
|
+
|
10
|
+
# [12.9.0](https://github.com/invertase/react-native-firebase/compare/v12.8.0...v12.9.0) (2021-10-03)
|
11
|
+
|
12
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
13
|
+
|
14
|
+
# [12.8.0](https://github.com/invertase/react-native-firebase/compare/v12.7.5...v12.8.0) (2021-09-14)
|
15
|
+
|
16
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
17
|
+
|
18
|
+
## [12.7.5](https://github.com/invertase/react-native-firebase/compare/v12.7.4...v12.7.5) (2021-09-04)
|
19
|
+
|
20
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
21
|
+
|
6
22
|
## [12.7.4](https://github.com/invertase/react-native-firebase/compare/v12.7.3...v12.7.4) (2021-08-31)
|
7
23
|
|
8
24
|
**Note:** Version bump only for package @react-native-firebase/perf
|
package/README.md
CHANGED
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// generated by genversion
|
2
|
-
module.exports = '12.
|
2
|
+
module.exports = '12.9.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/perf",
|
3
|
-
"version": "12.
|
3
|
+
"version": "12.9.1",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "React Native Firebase - React Native Firebase provides native integration with Performance Monitoring to gain insight into key performance characteristics within your React Native application.",
|
6
6
|
"main": "lib/index.js",
|
@@ -29,13 +29,13 @@
|
|
29
29
|
"performance monitoring"
|
30
30
|
],
|
31
31
|
"peerDependencies": {
|
32
|
-
"@react-native-firebase/app": "12.
|
32
|
+
"@react-native-firebase/app": "12.9.1"
|
33
33
|
},
|
34
34
|
"dependencies": {
|
35
|
-
"@expo/config-plugins": "^
|
35
|
+
"@expo/config-plugins": "^4.0.2"
|
36
36
|
},
|
37
37
|
"publishConfig": {
|
38
38
|
"access": "public"
|
39
39
|
},
|
40
|
-
"gitHead": "
|
40
|
+
"gitHead": "6fdca258a2b1849ad92c2a0c3669b37c705ab4e3"
|
41
41
|
}
|
@@ -7,7 +7,7 @@ const constants_1 = require("./constants");
|
|
7
7
|
* Update `app/build.gradle` by applying performance monitoring plugin
|
8
8
|
*/
|
9
9
|
const withApplyPerfPlugin = config => {
|
10
|
-
return config_plugins_1.withAppBuildGradle(config, config => {
|
10
|
+
return (0, config_plugins_1.withAppBuildGradle)(config, config => {
|
11
11
|
if (config.modResults.language === 'groovy') {
|
12
12
|
config.modResults.contents = applyPlugin(config.modResults.contents);
|
13
13
|
}
|
@@ -7,7 +7,7 @@ const constants_1 = require("./constants");
|
|
7
7
|
* Update `<project>/build.gradle` by adding performance monitoring dependency to buildscript
|
8
8
|
*/
|
9
9
|
const withBuildscriptDependency = config => {
|
10
|
-
return config_plugins_1.withProjectBuildGradle(config, config => {
|
10
|
+
return (0, config_plugins_1.withProjectBuildGradle)(config, config => {
|
11
11
|
if (config.modResults.language === 'groovy') {
|
12
12
|
config.modResults.contents = setBuildscriptDependency(config.modResults.contents);
|
13
13
|
}
|
package/plugin/build/index.js
CHANGED
@@ -6,7 +6,7 @@ const android_1 = require("./android");
|
|
6
6
|
* A config plugin for configuring `@react-native-firebase/perf`
|
7
7
|
*/
|
8
8
|
const withRnFirebasePerf = config => {
|
9
|
-
return config_plugins_1.withPlugins(config, [android_1.withBuildscriptDependency, android_1.withApplyPerfPlugin]);
|
9
|
+
return (0, config_plugins_1.withPlugins)(config, [android_1.withBuildscriptDependency, android_1.withApplyPerfPlugin]);
|
10
10
|
};
|
11
11
|
const pak = require('@react-native-firebase/perf/package.json');
|
12
|
-
exports.default = config_plugins_1.createRunOncePlugin(withRnFirebasePerf, pak.name, pak.version);
|
12
|
+
exports.default = (0, config_plugins_1.createRunOncePlugin)(withRnFirebasePerf, pak.name, pak.version);
|