Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @capacitor/docgen to ^0.3.0 - abandoned #470

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,8 @@ public void unsetChannel(final PluginCall call) {
}
call.resolve(res);
}
}));
})
);
} catch (final Exception e) {
Log.e(CapacitorUpdater.TAG, "Failed to unsetChannel: ", e);
call.reject("Failed to unsetChannel: ", e);
Expand Down Expand Up @@ -559,7 +560,8 @@ public void setChannel(final PluginCall call) {
}
call.resolve(res);
}
}));
})
);
} catch (final Exception e) {
Log.e(CapacitorUpdater.TAG, "Failed to setChannel: " + channel, e);
call.reject("Failed to setChannel: " + channel, e);
Expand All @@ -577,7 +579,8 @@ public void getChannel(final PluginCall call) {
} else {
call.resolve(res);
}
}));
})
);
} catch (final Exception e) {
Log.e(CapacitorUpdater.TAG, "Failed to getChannel", e);
call.reject("Failed to getChannel", e);
Expand Down Expand Up @@ -796,7 +799,8 @@ public void getLatest(final PluginCall call) {
}
call.resolve(ret);
}
));
)
);
}

private boolean _reset(final Boolean toLastSuccessful) {
Expand Down
Binary file modified bun.lockb
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
"@capacitor/android": "^6.0.0",
"@capacitor/cli": "^6.0.0",
"@capacitor/core": "^6.0.0",
"@capacitor/docgen": "^0.2.2",
"@capacitor/docgen": "^0.3.0",
"@capacitor/ios": "^6.0.0",
"@ionic/eslint-config": "^0.4.0",
"@ionic/prettier-config": "^4.0.0",
Expand Down
Loading