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,
|
isLagging: true,
|
||||||
message: __("Connection Failure"),
|
message: __("Connection Failure"),
|
||||||
details: __(
|
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 = {};
|
const rewards = {};
|
||||||
|
|
||||||
(rewards.TYPE_NEW_DEVELOPER = "new_developer"), (rewards.TYPE_NEW_USER =
|
rewards.TYPE_NEW_DEVELOPER = "new_developer";
|
||||||
"new_user"), (rewards.TYPE_CONFIRM_EMAIL =
|
rewards.TYPE_NEW_USER = "new_user";
|
||||||
"confirm_email"), (rewards.TYPE_FIRST_CHANNEL =
|
rewards.TYPE_CONFIRM_EMAIL = "confirm_email";
|
||||||
"new_channel"), (rewards.TYPE_FIRST_STREAM =
|
rewards.TYPE_FIRST_CHANNEL = "new_channel";
|
||||||
"first_stream"), (rewards.TYPE_MANY_DOWNLOADS =
|
rewards.TYPE_FIRST_STREAM = "first_stream";
|
||||||
"many_downloads"), (rewards.TYPE_FIRST_PUBLISH = "first_publish");
|
rewards.TYPE_MANY_DOWNLOADS = "many_downloads";
|
||||||
|
rewards.TYPE_FIRST_PUBLISH = "first_publish";
|
||||||
rewards.TYPE_FEATURED_DOWNLOAD = "featured_download";
|
rewards.TYPE_FEATURED_DOWNLOAD = "featured_download";
|
||||||
|
|
||||||
rewards.claimReward = function(type) {
|
rewards.claimReward = function(type) {
|
||||||
|
|
Loading…
Reference in a new issue