@zykeco/expo-background-task 1.0.1 → 1.0.3
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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zykeco/expo-background-task",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Expo Android and iOS module for Background Task APIs",
|
|
5
5
|
"main": "build/BackgroundTask.js",
|
|
6
6
|
"types": "build/BackgroundTask.d.ts",
|
|
@@ -28,6 +28,7 @@
|
|
|
28
28
|
"bugs": {
|
|
29
29
|
"url": "https://github.com/expo/expo/issues"
|
|
30
30
|
},
|
|
31
|
+
"author": "Zyke",
|
|
31
32
|
"license": "MIT",
|
|
32
33
|
"homepage": "https://docs.expo.dev/versions/latest/sdk/background-task/",
|
|
33
34
|
"dependencies": {
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const config_plugins_1 = require("expo/config-plugins");
|
|
4
|
-
const pkg = require('expo-background-task/package.json');
|
|
4
|
+
const pkg = require('@zykeco/expo-background-task/package.json');
|
|
5
5
|
const withBackgroundTask = (config) => {
|
|
6
6
|
return (0, config_plugins_1.withInfoPlist)(config, (config) => {
|
|
7
7
|
// Enable background mode processing
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ConfigPlugin, createRunOncePlugin, withInfoPlist } from 'expo/config-plugins';
|
|
2
2
|
|
|
3
|
-
const pkg = require('expo-background-task/package.json');
|
|
3
|
+
const pkg = require('@zykeco/expo-background-task/package.json');
|
|
4
4
|
|
|
5
5
|
const withBackgroundTask: ConfigPlugin = (config) => {
|
|
6
6
|
return withInfoPlist(config, (config) => {
|