Skip to content

Commit

Permalink
Remove cordova related files and docs (#831)
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyKirakosyan authored Aug 16, 2023
1 parent 9980a2d commit 0d02be5
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 22 deletions.
1 change: 0 additions & 1 deletion .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ Thanks so much for filing an issue or feature request! We will address it as soo

1. This repository is for the CodePush CLI and management SDK. For issues relating to the CodePush client SDK's, please see:
* react-native-code-push: https://github.com/Microsoft/react-native-code-push
* cordova-plugin-code-push: https://github.com/Microsoft/cordova-plugin-code-push
2. In your description, please include the version of `code-push-cli` or `code-push` that you are using.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# CodePush

[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.
[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.

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.

Expand Down
4 changes: 0 additions & 4 deletions migration-notice.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,6 @@ These methods are not supported in versions **[4.0.0](https://github.com/microso

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>).

## Cordova-plugin-code-push

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.

## React-native-code-push

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.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build:release": "tsc -p ./tsconfig-release.json && npm run content",
"test": "npm run build && mocha --recursive bin/test",
"test:debugger": "mocha --recursive --inspect-brk=0.0.0.0 bin/test",
"content": "shx cp {plugin.xml,README.md,package.json,.npmignore} bin"
"content": "shx cp {README.md,package.json,.npmignore} bin"
},
"repository": {
"type": "git",
Expand Down
14 changes: 0 additions & 14 deletions plugin.xml

This file was deleted.

2 changes: 1 addition & 1 deletion src/test/management-sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ describe("Management SDK", () => {
mockReturn("Text", 404);

var methodsWithErrorHandling: any[] = [
manager.addApp.bind(manager, "appName", "iOS", "Cordova"),
manager.addApp.bind(manager, "appName", "iOS", "React-Native"),
manager.getApp.bind(manager, "appName"),
manager.renameApp.bind(manager, "appName", {}),
manager.removeApp.bind(manager, "appName"),
Expand Down

0 comments on commit 0d02be5

Please sign in to comment.