dont even make lock files
This commit is contained in:
parent
aafba60858
commit
56aa4d2255
5 changed files with 11 additions and 7 deletions
1
.npmrc
Normal file
1
.npmrc
Normal file
|
@ -0,0 +1 @@
|
|||
shrinkwrap=false
|
1
app/.npmrc
Symbolic link
1
app/.npmrc
Symbolic link
|
@ -0,0 +1 @@
|
|||
../.npmrc
|
1
ui/.npmrc
Symbolic link
1
ui/.npmrc
Symbolic link
|
@ -0,0 +1 @@
|
|||
../.npmrc
|
|
@ -62,7 +62,7 @@ export class SplashScreen extends React.PureComponent {
|
|||
isLagging: true,
|
||||
message: __("Connection Failure"),
|
||||
details: __(
|
||||
"Try closing all LBRY processes and starting again. If this still happpens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug."
|
||||
"Try closing all LBRY processes and starting again. If this still happens, your anti-virus software or firewall may be preventing LBRY from connecting. Contact hello@lbry.io if you think this is a software bug."
|
||||
),
|
||||
});
|
||||
});
|
||||
|
|
|
@ -83,12 +83,13 @@ function isInitialClaim(claim) {
|
|||
|
||||
const rewards = {};
|
||||
|
||||
(rewards.TYPE_NEW_DEVELOPER = "new_developer"), (rewards.TYPE_NEW_USER =
|
||||
"new_user"), (rewards.TYPE_CONFIRM_EMAIL =
|
||||
"confirm_email"), (rewards.TYPE_FIRST_CHANNEL =
|
||||
"new_channel"), (rewards.TYPE_FIRST_STREAM =
|
||||
"first_stream"), (rewards.TYPE_MANY_DOWNLOADS =
|
||||
"many_downloads"), (rewards.TYPE_FIRST_PUBLISH = "first_publish");
|
||||
rewards.TYPE_NEW_DEVELOPER = "new_developer";
|
||||
rewards.TYPE_NEW_USER = "new_user";
|
||||
rewards.TYPE_CONFIRM_EMAIL = "confirm_email";
|
||||
rewards.TYPE_FIRST_CHANNEL = "new_channel";
|
||||
rewards.TYPE_FIRST_STREAM = "first_stream";
|
||||
rewards.TYPE_MANY_DOWNLOADS = "many_downloads";
|
||||
rewards.TYPE_FIRST_PUBLISH = "first_publish";
|
||||
rewards.TYPE_FEATURED_DOWNLOAD = "featured_download";
|
||||
|
||||
rewards.claimReward = function(type) {
|
||||
|
|
Loading…
Reference in a new issue