dont even make lock files

This commit is contained in:
Alex Grintsvayg 2017-06-23 06:49:23 -04:00
parent aafba60858
commit 56aa4d2255
5 changed files with 11 additions and 7 deletions

1
.npmrc Normal file
View file

@ -0,0 +1 @@
shrinkwrap=false

1
app/.npmrc Symbolic link
View file

@ -0,0 +1 @@
../.npmrc

1
ui/.npmrc Symbolic link
View file

@ -0,0 +1 @@
../.npmrc

View file

@ -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."
),
});
});

View file

@ -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) {