Skip to content

Commit

Permalink
Merge branch 'master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
VMBindraban authored Jan 29, 2024
2 parents ec8e4be + 0aa39d3 commit e8d017f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions android/codepush.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,8 @@ gradle.projectsEvaluated {
jsBundleDir = reactBundleTask.property('jsBundleDir').asFile.get()
resourcesDir = reactBundleTask.property('resourcesDir').asFile.get()

new File(jsBundleDir).mkdirs()
new File(resourcesDir).mkdirs()
jsBundleDir.mkdirs()
resourcesDir.mkdirs()

jsBundleFile = file("$jsBundleDir/$bundleAssetName")

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-code-push",
"version": "8.2.0",
"version": "8.2.1",
"description": "React Native plugin for the CodePush service",
"main": "CodePush.js",
"typings": "typings/react-native-code-push.d.ts",
Expand Down

0 comments on commit e8d017f

Please sign in to comment.