Skip to content
This repository has been archived by the owner on Oct 12, 2022. It is now read-only.

Commit

Permalink
Fix for dependencies installation (#377)
Browse files Browse the repository at this point in the history
  • Loading branch information
itoys authored Feb 19, 2018
1 parent bcf9d2d commit 70d0c5d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 58 deletions.
53 changes: 0 additions & 53 deletions hooks/afterPluginInstall.js

This file was deleted.

2 changes: 1 addition & 1 deletion 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": "cordova-plugin-code-push",
"version": "1.11.6",
"version": "1.11.7",
"description": "CodePush Plugin for Apache Cordova",
"cordova": {
"id": "cordova-plugin-code-push",
Expand Down
12 changes: 9 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
<?xml version="1.0" encoding="UTF-8" ?>
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-code-push" version="1.11.6">
<plugin xmlns="http://apache.org/cordova/ns/plugins/1.0" id="cordova-plugin-code-push" version="1.11.7">
<name>CodePush</name>
<description>This plugin allows you to push code updates to your apps instantly using the CodePush service</description>
<license>MIT</license>
<keywords>cordova,code,push</keywords>
<repo>https://github.com/Microsoft/cordova-plugin-code-push.git</repo>

<hook type="after_plugin_install" src="hooks/afterPluginInstall.js" />

<dependency id="code-push" version="2.0.4" />
<dependency id="cordova-plugin-dialogs" version=">=1.1.1" />
<dependency id="cordova-plugin-device" version=">=1.1.0" />
<!--
Ancient dark magic! cordova@6.* works only with "commit" attribute, cordova@8.* works only with "#",
so this is the once way to make plugin works for both versions
-->
<dependency id="cordova-plugin-file" url="https://github.com/apache/cordova-plugin-file#4.3.3" commit="4.3.3" />
<dependency id="cordova-plugin-file-transfer" url="https://github.com/apache/cordova-plugin-file-transfer#1.6.3" commit="1.6.3" />
<dependency id="cordova-plugin-zip" version="3.1.0" />

<js-module src="bin/www/codePush.js" name="codePush">
<clobbers target="codePush" />
Expand Down

0 comments on commit 70d0c5d

Please sign in to comment.