expo-task-manager 10.0.0 → 10.1.0
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 +8 -0
- package/README.md +1 -1
- package/android/build.gradle +2 -2
- package/package.json +7 -5
- package/plugin/build/withTaskManager.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -10,6 +10,14 @@
|
|
|
10
10
|
|
|
11
11
|
### 💡 Others
|
|
12
12
|
|
|
13
|
+
## 10.1.0 — 2021-12-03
|
|
14
|
+
|
|
15
|
+
_This version does not introduce any user-facing changes._
|
|
16
|
+
|
|
17
|
+
## 10.0.1 — 2021-10-01
|
|
18
|
+
|
|
19
|
+
_This version does not introduce any user-facing changes._
|
|
20
|
+
|
|
13
21
|
## 10.0.0 — 2021-09-28
|
|
14
22
|
|
|
15
23
|
### 🛠 Breaking changes
|
package/README.md
CHANGED
|
@@ -13,7 +13,7 @@ For managed [managed](https://docs.expo.io/versions/latest/introduction/managed-
|
|
|
13
13
|
|
|
14
14
|
# Installation in bare React Native projects
|
|
15
15
|
|
|
16
|
-
For bare React Native projects, you must ensure that you have [installed and configured the `
|
|
16
|
+
For bare React Native projects, you must ensure that you have [installed and configured the `expo` package](https://docs.expo.dev/bare/installing-expo-modules/) before continuing.
|
|
17
17
|
|
|
18
18
|
## Installation in bare iOS React Native project
|
|
19
19
|
|
package/android/build.gradle
CHANGED
|
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
|
|
|
3
3
|
apply plugin: 'maven'
|
|
4
4
|
|
|
5
5
|
group = 'host.exp.exponent'
|
|
6
|
-
version = '10.
|
|
6
|
+
version = '10.1.0'
|
|
7
7
|
|
|
8
8
|
buildscript {
|
|
9
9
|
// Simple helper that allows the root project to override versions declared by this library.
|
|
@@ -57,7 +57,7 @@ android {
|
|
|
57
57
|
minSdkVersion safeExtGet("minSdkVersion", 21)
|
|
58
58
|
targetSdkVersion safeExtGet("targetSdkVersion", 30)
|
|
59
59
|
versionCode 23
|
|
60
|
-
versionName "10.
|
|
60
|
+
versionName "10.1.0"
|
|
61
61
|
}
|
|
62
62
|
lintOptions {
|
|
63
63
|
abortOnError false
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "expo-task-manager",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.1.0",
|
|
4
4
|
"description": "Expo module that provides support for tasks that can run in the background.",
|
|
5
5
|
"main": "build/TaskManager.js",
|
|
6
6
|
"types": "build/TaskManager.d.ts",
|
|
@@ -33,13 +33,15 @@
|
|
|
33
33
|
"license": "MIT",
|
|
34
34
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/task-manager/",
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@expo/config-plugins": "^
|
|
37
|
-
"expo-modules-core": "~0.4.0",
|
|
36
|
+
"@expo/config-plugins": "^4.0.2",
|
|
38
37
|
"unimodules-app-loader": "~3.0.0",
|
|
39
|
-
"unimodules-task-manager-interface": "7.
|
|
38
|
+
"unimodules-task-manager-interface": "7.1.0"
|
|
40
39
|
},
|
|
41
40
|
"devDependencies": {
|
|
42
41
|
"expo-module-scripts": "^2.0.0"
|
|
43
42
|
},
|
|
44
|
-
"
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"expo": "*"
|
|
45
|
+
},
|
|
46
|
+
"gitHead": "4ac89934e2acc4ef1fad59f338d9019fe2d92240"
|
|
45
47
|
}
|
|
@@ -3,7 +3,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
const config_plugins_1 = require("@expo/config-plugins");
|
|
4
4
|
const pkg = require('expo-task-manager/package.json');
|
|
5
5
|
const withTaskManager = (config) => {
|
|
6
|
-
config = config_plugins_1.withInfoPlist(config, (config) => {
|
|
6
|
+
config = (0, config_plugins_1.withInfoPlist)(config, (config) => {
|
|
7
7
|
if (!Array.isArray(config.modResults.UIBackgroundModes)) {
|
|
8
8
|
config.modResults.UIBackgroundModes = [];
|
|
9
9
|
}
|
|
@@ -14,4 +14,4 @@ const withTaskManager = (config) => {
|
|
|
14
14
|
});
|
|
15
15
|
return config;
|
|
16
16
|
};
|
|
17
|
-
exports.default = config_plugins_1.createRunOncePlugin(withTaskManager, pkg.name, pkg.version);
|
|
17
|
+
exports.default = (0, config_plugins_1.createRunOncePlugin)(withTaskManager, pkg.name, pkg.version);
|