Skip to content

Commit 0d02be5

Browse files
Remove cordova related files and docs (#831)
1 parent 9980a2d commit 0d02be5

File tree

6 files changed

+3
-22
lines changed

6 files changed

+3
-22
lines changed

.github/ISSUE_TEMPLATE.md

-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@ Thanks so much for filing an issue or feature request! We will address it as soo
22

33
1. This repository is for the CodePush CLI and management SDK. For issues relating to the CodePush client SDK's, please see:
44
* react-native-code-push: https://github.com/Microsoft/react-native-code-push
5-
* cordova-plugin-code-push: https://github.com/Microsoft/cordova-plugin-code-push
65
2. In your description, please include the version of `code-push-cli` or `code-push` that you are using.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
# CodePush
66

7-
[CodePush](https://microsoft.github.io/code-push) is a cloud service that enables Cordova and React Native developers to deploy mobile app updates directly to their users' devices. It works by acting as a central repository that developers can publish updates to (JS, HTML, CSS and images), and that apps can query for updates from (using provided client SDK for [Cordova](https://github.com/Microsoft/cordova-plugin-code-push) and [React Native](https://github.com/Microsoft/react-native-code-push)). This allows you to have a more deterministic and direct engagement model with your userbase, when addressing bugs and/or adding small features that don't require you to re-build a binary and re-distribute it through the respective app stores.
7+
[CodePush](https://microsoft.github.io/code-push) is a cloud service that enables React Native developers to deploy mobile app updates directly to their users' devices. It works by acting as a central repository that developers can publish updates to (JS, HTML, CSS and images), and that apps can query for updates from (using provided client SDK for [React Native](https://github.com/Microsoft/react-native-code-push)). This allows you to have a more deterministic and direct engagement model with your userbase, when addressing bugs and/or adding small features that don't require you to re-build a binary and re-distribute it through the respective app stores.
88

99
To get started using CodePush, refer to our [documentation](https://docs.microsoft.com/en-us/appcenter/distribution/codepush/), otherwise, read the following steps if you'd like to build/contribute to the project from source.
1010

migration-notice.md

-4
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,6 @@ These methods are not supported in versions **[4.0.0](https://github.com/microso
6969

7070
The CodePush CLI **[3.0.0](https://www.npmjs.com/package/code-push-cli/v/3.0.0)** is the latest and last version for this CLI. We no longer update the CodePush CLI and recommend migrating to the App Center CLI (<https://github.com/microsoft/appcenter-cli>).
7171

72-
## Cordova-plugin-code-push
73-
74-
Cordova-plugin-code-push versions lower than **[1.12.0](https://github.com/microsoft/cordova-plugin-code-push/releases/tag/v1.12.0)** will stop working in the near future.
75-
7672
## React-native-code-push
7773

7874
React-native-code-push versions lower than **[5.7.0](https://github.com/microsoft/react-native-code-push/releases/tag/v5.7.0)** will stop working in the near future.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"build:release": "tsc -p ./tsconfig-release.json && npm run content",
1414
"test": "npm run build && mocha --recursive bin/test",
1515
"test:debugger": "mocha --recursive --inspect-brk=0.0.0.0 bin/test",
16-
"content": "shx cp {plugin.xml,README.md,package.json,.npmignore} bin"
16+
"content": "shx cp {README.md,package.json,.npmignore} bin"
1717
},
1818
"repository": {
1919
"type": "git",

plugin.xml

-14
This file was deleted.

src/test/management-sdk.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ describe("Management SDK", () => {
5656
mockReturn("Text", 404);
5757

5858
var methodsWithErrorHandling: any[] = [
59-
manager.addApp.bind(manager, "appName", "iOS", "Cordova"),
59+
manager.addApp.bind(manager, "appName", "iOS", "React-Native"),
6060
manager.getApp.bind(manager, "appName"),
6161
manager.renameApp.bind(manager, "appName", {}),
6262
manager.removeApp.bind(manager, "appName"),

0 commit comments

Comments
 (0)