Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 03e91b3

Browse files
committed
revert to module.exporst
1 parent ad3cd21 commit 03e91b3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CodePush.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,4 +295,4 @@ const CodePush = {
295295
}
296296
};
297297

298-
export default CodePush;
298+
module.exports = CodePush;

package-mixins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { DeviceEventEmitter } from "react-native";
55
// This function is used to augment remote and local
66
// package objects with additional functionality/properties
77
// beyond what is included in the metadata sent by the server.
8-
export default (NativeCodePush) => {
8+
module.exports = (NativeCodePush) => {
99
const remote = {
1010
async download(downloadProgressCallback) {
1111
if (!this.downloadUrl) {

request-fetch-adapter.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"use strict";
22

3-
export default {
3+
module.exports = {
44
async request(verb, url, body, callback) {
55
if (typeof body === "function") {
66
callback = body;

0 commit comments

Comments
 (0)