cleanup
This commit is contained in:
parent
ca776f78ca
commit
965fb5a2ba
12 changed files with 142 additions and 198 deletions
|
@ -1 +1 @@
|
||||||
src/ui/scss/component/_load-screen.scss
|
src/ui/scss/component/_splash.scss
|
||||||
|
|
|
@ -24,14 +24,13 @@ const downloadDaemon = targetPlatform =>
|
||||||
const daemonFilePath = path.join(daemonDir, daemonFileName);
|
const daemonFilePath = path.join(daemonDir, daemonFileName);
|
||||||
const daemonVersionPath = path.join(__dirname, 'daemon.ver');
|
const daemonVersionPath = path.join(__dirname, 'daemon.ver');
|
||||||
const tmpZipPath = path.join(__dirname, '..', 'dist', 'daemon.zip');
|
const tmpZipPath = path.join(__dirname, '..', 'dist', 'daemon.zip');
|
||||||
const daemonURL = daemonURLTemplate
|
const daemonURL = daemonURLTemplate.replace(/DAEMONVER/g, daemonVersion).replace(/OSNAME/g, daemonPlatform);
|
||||||
.replace(/DAEMONVER/g, daemonVersion)
|
|
||||||
.replace(/OSNAME/g, daemonPlatform);
|
|
||||||
|
|
||||||
// If a daemon and daemon.ver exists, check to see if it matches the current daemon version
|
// If a daemon and daemon.ver exists, check to see if it matches the current daemon version
|
||||||
const hasDaemonDownloaded = fs.existsSync(daemonFilePath);
|
const hasDaemonDownloaded = fs.existsSync(daemonFilePath);
|
||||||
const hasDaemonVersion = fs.existsSync(daemonVersionPath);
|
const hasDaemonVersion = fs.existsSync(daemonVersionPath);
|
||||||
let downloadedDaemonVersion;
|
let downloadedDaemonVersion;
|
||||||
|
|
||||||
if (hasDaemonVersion) {
|
if (hasDaemonVersion) {
|
||||||
downloadedDaemonVersion = fs.readFileSync(daemonVersionPath, 'utf8');
|
downloadedDaemonVersion = fs.readFileSync(daemonVersionPath, 'utf8');
|
||||||
}
|
}
|
||||||
|
@ -65,6 +64,7 @@ const downloadDaemon = targetPlatform =>
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
.then(() => del(`${daemonFilePath}*`))
|
.then(() => del(`${daemonFilePath}*`))
|
||||||
|
.then()
|
||||||
.then(() =>
|
.then(() =>
|
||||||
decompress(tmpZipPath, daemonDir, {
|
decompress(tmpZipPath, daemonDir, {
|
||||||
filter: file => path.basename(file.path) === daemonFileName,
|
filter: file => path.basename(file.path) === daemonFileName,
|
||||||
|
@ -80,9 +80,7 @@ const downloadDaemon = targetPlatform =>
|
||||||
resolve('Done');
|
resolve('Done');
|
||||||
})
|
})
|
||||||
.catch(error => {
|
.catch(error => {
|
||||||
console.error(
|
console.error(`\x1b[31merror\x1b[0m Daemon download failed due to: \x1b[35m${error}\x1b[0m`);
|
||||||
`\x1b[31merror\x1b[0m Daemon download failed due to: \x1b[35m${error}\x1b[0m`
|
|
||||||
);
|
|
||||||
reject(error);
|
reject(error);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
|
@ -81,6 +81,7 @@
|
||||||
"copy-webpack-plugin": "^4.6.0",
|
"copy-webpack-plugin": "^4.6.0",
|
||||||
"country-data": "^0.0.31",
|
"country-data": "^0.0.31",
|
||||||
"cross-env": "^5.2.0",
|
"cross-env": "^5.2.0",
|
||||||
|
"css-doodle": "^0.7.1",
|
||||||
"css-loader": "^2.1.0",
|
"css-loader": "^2.1.0",
|
||||||
"cssnano": "^4.1.10",
|
"cssnano": "^4.1.10",
|
||||||
"dat.gui": "^0.7.2",
|
"dat.gui": "^0.7.2",
|
||||||
|
|
|
@ -16,7 +16,7 @@ export default appState => {
|
||||||
});
|
});
|
||||||
|
|
||||||
const windowConfiguration = {
|
const windowConfiguration = {
|
||||||
backgroundColor: '#2f9176',
|
backgroundColor: '#270f34', // Located in src/scss/init/_vars.scss `--color-background`
|
||||||
minWidth: 950,
|
minWidth: 950,
|
||||||
minHeight: 600,
|
minHeight: 600,
|
||||||
autoHideMenuBar: true,
|
autoHideMenuBar: true,
|
||||||
|
|
|
@ -1,36 +0,0 @@
|
||||||
// @flow
|
|
||||||
import * as ICONS from 'constants/icons';
|
|
||||||
import React, { Fragment } from 'react';
|
|
||||||
import Icon from 'component/common/icon';
|
|
||||||
import Spinner from 'component/spinner';
|
|
||||||
import Button from 'component/button';
|
|
||||||
// import Doodle from 'component/doodle';
|
|
||||||
import 'css-doodle';
|
|
||||||
|
|
||||||
type Props = {
|
|
||||||
message: string,
|
|
||||||
details: ?string,
|
|
||||||
isWarning: boolean,
|
|
||||||
error: boolean,
|
|
||||||
};
|
|
||||||
|
|
||||||
// const FancyDoodle = Doodle``; // this looks dumb but it prevents repetition from `_load-screen.scss`
|
|
||||||
|
|
||||||
class LoadScreen extends React.PureComponent<Props> {
|
|
||||||
static defaultProps = {
|
|
||||||
isWarning: false,
|
|
||||||
};
|
|
||||||
|
|
||||||
render() {
|
|
||||||
const { details, message, isWarning, error } = this.props;
|
|
||||||
|
|
||||||
return (
|
|
||||||
<div className="load-screen">
|
|
||||||
<h1 className="load-screen__title">{__('LBRY')}</h1>
|
|
||||||
<css-doodle use="var(--rule)" />
|
|
||||||
</div>
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
export default LoadScreen;
|
|
|
@ -1,14 +1,15 @@
|
||||||
// @flow
|
// @flow
|
||||||
import * as React from 'react';
|
|
||||||
import * as MODALS from 'constants/modal_types';
|
import * as MODALS from 'constants/modal_types';
|
||||||
|
import React from 'react';
|
||||||
import { Lbry } from 'lbry-redux';
|
import { Lbry } from 'lbry-redux';
|
||||||
|
import Button from 'component/button';
|
||||||
import ModalWalletUnlock from 'modal/modalWalletUnlock';
|
import ModalWalletUnlock from 'modal/modalWalletUnlock';
|
||||||
import ModalIncompatibleDaemon from 'modal/modalIncompatibleDaemon';
|
import ModalIncompatibleDaemon from 'modal/modalIncompatibleDaemon';
|
||||||
import ModalUpgrade from 'modal/modalUpgrade';
|
import ModalUpgrade from 'modal/modalUpgrade';
|
||||||
import ModalDownloading from 'modal/modalDownloading';
|
import ModalDownloading from 'modal/modalDownloading';
|
||||||
import LoadScreen from './internal/load-screen';
|
import 'css-doodle';
|
||||||
|
|
||||||
const ONE_MINUTE = 60 * 1000;
|
const FORTY_FIVE_SECONDS = 45 * 1000;
|
||||||
|
|
||||||
type Props = {
|
type Props = {
|
||||||
checkDaemonVersion: () => Promise<any>,
|
checkDaemonVersion: () => Promise<any>,
|
||||||
|
@ -87,7 +88,7 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
// If nothing changes after 1 minute, show the error message.
|
// If nothing changes after 1 minute, show the error message.
|
||||||
this.timeout = setTimeout(() => {
|
this.timeout = setTimeout(() => {
|
||||||
this.setState({ error: true });
|
this.setState({ error: true });
|
||||||
}, ONE_MINUTE);
|
}, FORTY_FIVE_SECONDS);
|
||||||
}
|
}
|
||||||
|
|
||||||
updateStatus() {
|
updateStatus() {
|
||||||
|
@ -170,14 +171,14 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
const { daemonVersionMatched, onReadyToLaunch } = this.props;
|
const { daemonVersionMatched, onReadyToLaunch } = this.props;
|
||||||
const { isRunning, launchWithIncompatibleDaemon } = this.state;
|
const { isRunning, launchWithIncompatibleDaemon } = this.state;
|
||||||
|
|
||||||
// if (daemonVersionMatched) {
|
if (daemonVersionMatched) {
|
||||||
// onReadyToLaunch();
|
onReadyToLaunch();
|
||||||
// } else if (launchWithIncompatibleDaemon && isRunning) {
|
} else if (launchWithIncompatibleDaemon && isRunning) {
|
||||||
// // The user may have decided to run the app with mismatched daemons
|
// The user may have decided to run the app with mismatched daemons
|
||||||
// // They could make this decision before the daemon is finished starting up
|
// They could make this decision before the daemon is finished starting up
|
||||||
// // If it isn't running, this function will be called after the daemon is started
|
// If it isn't running, this function will be called after the daemon is started
|
||||||
// onReadyToLaunch();
|
onReadyToLaunch();
|
||||||
// }
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
hasRecordedUser: boolean;
|
hasRecordedUser: boolean;
|
||||||
|
@ -206,16 +207,32 @@ export default class SplashScreen extends React.PureComponent<Props, State> {
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
const { message, details, error } = this.state;
|
const { error } = this.state;
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<React.Fragment>
|
<div className="splash">
|
||||||
<LoadScreen message={message} details={details} error={error} />
|
<css-doodle use="var(--rule)" />
|
||||||
|
<h1 className="splash__title">LBRY</h1>
|
||||||
|
{error && (
|
||||||
|
<div className="splash__error card card--section">
|
||||||
|
<h3>{__('Uh oh. The flux in our Retro Encabulator must be out of whack. Try refreshing to fix it.')}</h3>
|
||||||
|
<div className="splash__actions">
|
||||||
|
<Button button="primary" label={__('Refresh')} onClick={() => window.location.reload()} />
|
||||||
|
</div>
|
||||||
|
<div className="help">
|
||||||
|
<p>{__('If you still have issues, your anti-virus software or firewall may be preventing startup.')}</p>
|
||||||
|
<p>
|
||||||
|
{__('Reach out to hello@lbry.com for help, or check out')}{' '}
|
||||||
|
<Button button="link" href="https://lbry.com/faq/startup-troubleshooting" label="this link" />.
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
)}
|
||||||
{/* Temp hack: don't show any modals on splash screen daemon is running;
|
{/* Temp hack: don't show any modals on splash screen daemon is running;
|
||||||
daemon doesn't let you quit during startup, so the "Quit" buttons
|
daemon doesn't let you quit during startup, so the "Quit" buttons
|
||||||
in the modals won't work. */}
|
in the modals won't work. */}
|
||||||
{this.renderModals()}
|
{this.renderModals()}
|
||||||
</React.Fragment>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,7 +24,6 @@
|
||||||
@import 'component/header';
|
@import 'component/header';
|
||||||
@import 'component/icon';
|
@import 'component/icon';
|
||||||
@import 'component/item-list';
|
@import 'component/item-list';
|
||||||
@import 'component/load-screen';
|
|
||||||
@import 'component/main';
|
@import 'component/main';
|
||||||
@import 'component/markdown-editor';
|
@import 'component/markdown-editor';
|
||||||
@import 'component/markdown-preview';
|
@import 'component/markdown-preview';
|
||||||
|
@ -38,6 +37,7 @@
|
||||||
@import 'component/search';
|
@import 'component/search';
|
||||||
@import 'component/snack-bar';
|
@import 'component/snack-bar';
|
||||||
@import 'component/spinner';
|
@import 'component/spinner';
|
||||||
|
@import 'component/splash';
|
||||||
@import 'component/subscriptions';
|
@import 'component/subscriptions';
|
||||||
@import 'component/syntax-highlighter';
|
@import 'component/syntax-highlighter';
|
||||||
@import 'component/table';
|
@import 'component/table';
|
||||||
|
|
|
@ -1,130 +0,0 @@
|
||||||
.load-screen {
|
|
||||||
width: 100vw;
|
|
||||||
height: 100vh;
|
|
||||||
|
|
||||||
align-items: center;
|
|
||||||
background-color: #270f34;
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
overflow: hidden;
|
|
||||||
|
|
||||||
css-doodle {
|
|
||||||
--color: @p(var(--lbry-teal-1), var(--lbry-orange-1), var(--lbry-cyan-3), var(--lbry-pink-5));
|
|
||||||
--rule: (
|
|
||||||
:doodle {
|
|
||||||
@grid: 30x1 / 18vmin;
|
|
||||||
--deg: @p(-180deg, 180deg);
|
|
||||||
}
|
|
||||||
:container {
|
|
||||||
perspective: 30vmin;
|
|
||||||
}
|
|
||||||
:after, :before {
|
|
||||||
// content: '';
|
|
||||||
// background: var(--color);
|
|
||||||
// @place-cell: @r(100%) @r(100%);
|
|
||||||
// @size: @r(6px);
|
|
||||||
// @shape: heart;
|
|
||||||
}
|
|
||||||
|
|
||||||
@place-cell: center;
|
|
||||||
@size: 100%;
|
|
||||||
|
|
||||||
box-shadow: @m2(0 0 50px var(--color));
|
|
||||||
background: @m100(
|
|
||||||
radial-gradient(var(--color) 50%, transparent 0)
|
|
||||||
@r(-20%, 120%) @r(-20%, 100%) / 1px 1px
|
|
||||||
no-repeat
|
|
||||||
);
|
|
||||||
|
|
||||||
will-change: transform, opacity;
|
|
||||||
animation: scale-up 12s linear infinite;
|
|
||||||
animation-delay: calc(-12s / @size() * @i());
|
|
||||||
|
|
||||||
@keyframes scale-up {
|
|
||||||
0%, 95.01%, 100% {
|
|
||||||
transform: translateZ(0) rotate(0);
|
|
||||||
opacity: 0;
|
|
||||||
}
|
|
||||||
10% {
|
|
||||||
opacity: 1;
|
|
||||||
}
|
|
||||||
95% {
|
|
||||||
transform:
|
|
||||||
translateZ(35vmin) rotateZ(@var(--deg));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// .load-screen__actions {
|
|
||||||
// font-size: 1.2em;
|
|
||||||
// margin-top: var(--spacing-vertical-medium);
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .load-screen__button {
|
|
||||||
// border-bottom: 1px solid $lbry-white;
|
|
||||||
// color: $lbry-white;
|
|
||||||
// transition: none;
|
|
||||||
|
|
||||||
// &:hover {
|
|
||||||
// border-bottom: 1px solid $lbry-blue-1;
|
|
||||||
// color: $lbry-blue-1;
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
// .load-screen__details {
|
|
||||||
// font-weight: 600;
|
|
||||||
// line-height: 1;
|
|
||||||
// max-width: 400px;
|
|
||||||
// }
|
|
||||||
|
|
||||||
.load-screen__header {
|
|
||||||
display: flex;
|
|
||||||
justify-content: center;
|
|
||||||
margin-bottom: var(--spacing-vertical-medium);
|
|
||||||
}
|
|
||||||
|
|
||||||
.load-screen__overlay {
|
|
||||||
// @include center;
|
|
||||||
|
|
||||||
color: $lbry-white;
|
|
||||||
flex-direction: column;
|
|
||||||
align-items: center;
|
|
||||||
justify-content: center;
|
|
||||||
position: relative;
|
|
||||||
text-align: center;
|
|
||||||
z-index: 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
.load-screen__title {
|
|
||||||
font-size: 40px;
|
|
||||||
font-weight: 700;
|
|
||||||
line-height: 1;
|
|
||||||
position: relative;
|
|
||||||
color: $lbry-white;
|
|
||||||
position: absolute;
|
|
||||||
|
|
||||||
// sup {
|
|
||||||
// margin-left: -var(--spacing-vertical-tiny);
|
|
||||||
// padding: var(--spacing-vertical-miniscule) var(--spacing-vertical-small);
|
|
||||||
|
|
||||||
// background-color: rgba($lbry-white, 0.3);
|
|
||||||
// border-radius: 0.2rem;
|
|
||||||
// color: $lbry-white;
|
|
||||||
// font-size: 0.6rem;
|
|
||||||
// font-weight: 400;
|
|
||||||
// letter-spacing: 0.1rem;
|
|
||||||
// line-height: 1;
|
|
||||||
// position: absolute;
|
|
||||||
// text-transform: uppercase;
|
|
||||||
// top: 1.5rem;
|
|
||||||
// }
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// .load-screen--help {
|
|
||||||
// font-size: 14px;
|
|
||||||
// padding-top: $spacing-vertical;
|
|
||||||
// }
|
|
|
@ -90,8 +90,7 @@
|
||||||
|
|
||||||
.error-modal__content {
|
.error-modal__content {
|
||||||
display: flex;
|
display: flex;
|
||||||
padding: 0 var(--spacing-vertical-medium) var(--spacing-vertical-medium)
|
padding: 0 var(--spacing-vertical-medium) var(--spacing-vertical-medium) var(--spacing-vertical-medium);
|
||||||
var(--spacing-vertical-medium);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.error-modal__warning-symbol {
|
.error-modal__warning-symbol {
|
||||||
|
|
91
src/ui/scss/component/_splash.scss
Normal file
91
src/ui/scss/component/_splash.scss
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
//
|
||||||
|
// Formatting is ignored for this file because css-doodle requires that the styles be in a specific shape
|
||||||
|
//
|
||||||
|
.splash {
|
||||||
|
width: 100vw;
|
||||||
|
height: 100vh;
|
||||||
|
|
||||||
|
align-items: center;
|
||||||
|
background-color: var(--color-background);
|
||||||
|
display: flex;
|
||||||
|
justify-content: center;
|
||||||
|
overflow: hidden;
|
||||||
|
|
||||||
|
css-doodle {
|
||||||
|
z-index: 0;
|
||||||
|
|
||||||
|
--color: @p(var(--lbry-teal-1), var(--lbry-orange-1), var(--lbry-cyan-3), var(--lbry-pink-5));
|
||||||
|
--rule: (
|
||||||
|
:doodle {
|
||||||
|
@grid: 30x1 / 18vmin;
|
||||||
|
--deg: @p(-180deg, 180deg);
|
||||||
|
}
|
||||||
|
:container {
|
||||||
|
perspective: 30vmin;
|
||||||
|
}
|
||||||
|
|
||||||
|
@place-cell: center;
|
||||||
|
@size: 100%;
|
||||||
|
|
||||||
|
box-shadow: @m2(0 0 50px var(--color));
|
||||||
|
background: @m100(
|
||||||
|
radial-gradient(var(--color) 50%, transparent 0)
|
||||||
|
@r(-20%, 120%) @r(-20%, 100%) / 1px 1px
|
||||||
|
no-repeat
|
||||||
|
);
|
||||||
|
|
||||||
|
will-change: transform, opacity;
|
||||||
|
animation: scale-up 12s linear infinite;
|
||||||
|
animation-delay: calc(-12s / @size() * @i());
|
||||||
|
|
||||||
|
@keyframes scale-up {
|
||||||
|
0%, 95.01%, 100% {
|
||||||
|
transform: translateZ(0) rotate(0);
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
10% {
|
||||||
|
opacity: 1;
|
||||||
|
}
|
||||||
|
95% {
|
||||||
|
transform:
|
||||||
|
translateZ(35vmin) rotateZ(@var(--deg));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash__actions {
|
||||||
|
margin-top: var(--spacing-vertical-medium);
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash__button {
|
||||||
|
border-bottom: 1px solid $lbry-white;
|
||||||
|
color: $lbry-white;
|
||||||
|
transition: none;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
border-bottom: 1px solid $lbry-blue-1;
|
||||||
|
color: $lbry-blue-1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash__details {
|
||||||
|
font-weight: 600;
|
||||||
|
line-height: 1;
|
||||||
|
max-width: 400px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash__title {
|
||||||
|
position: absolute;
|
||||||
|
font-size: 40px;
|
||||||
|
line-height: 1;
|
||||||
|
font-weight: 700;
|
||||||
|
color: $lbry-white;
|
||||||
|
}
|
||||||
|
|
||||||
|
.splash__error {
|
||||||
|
position: absolute;
|
||||||
|
margin-top: 25rem;
|
||||||
|
box-shadow: var(--card-box-shadow) $lbry-gray-5;
|
||||||
|
}
|
|
@ -9,7 +9,6 @@ $large-breakpoint: 1921px;
|
||||||
// Width & spacing
|
// Width & spacing
|
||||||
--side-nav-width: 180px;
|
--side-nav-width: 180px;
|
||||||
--font-size-subtext-multiple: 0.92;
|
--font-size-subtext-multiple: 0.92;
|
||||||
|
|
||||||
--spacing-vertical-miniscule: calc(2rem / 5);
|
--spacing-vertical-miniscule: calc(2rem / 5);
|
||||||
--spacing-vertical-tiny: calc(2rem / 4);
|
--spacing-vertical-tiny: calc(2rem / 4);
|
||||||
--spacing-vertical-small: calc(2rem / 3);
|
--spacing-vertical-small: calc(2rem / 3);
|
||||||
|
@ -17,15 +16,15 @@ $large-breakpoint: 1921px;
|
||||||
--spacing-vertical-large: 2rem;
|
--spacing-vertical-large: 2rem;
|
||||||
--spacing-vertical-xlarge: 3rem;
|
--spacing-vertical-xlarge: 3rem;
|
||||||
--spacing-main-padding: var(--spacing-vertical-xlarge);
|
--spacing-main-padding: var(--spacing-vertical-xlarge);
|
||||||
|
|
||||||
--file-page-max-width: 1787px;
|
--file-page-max-width: 1787px;
|
||||||
--file-max-height: 788px;
|
--file-max-height: 788px;
|
||||||
--file-max-width: 1400px;
|
--file-max-width: 1400px;
|
||||||
|
|
||||||
--video-aspect-ratio: 56.25%; // 9 x 16
|
--video-aspect-ratio: 56.25%; // 9 x 16
|
||||||
|
|
||||||
--channel-thumbnail-size: 10rem;
|
--channel-thumbnail-size: 10rem;
|
||||||
|
|
||||||
|
// Color
|
||||||
|
--color-background: #270f34;
|
||||||
|
|
||||||
// Text
|
// Text
|
||||||
--text-max-width: 660px;
|
--text-max-width: 660px;
|
||||||
--text-link-padding: 4px;
|
--text-link-padding: 4px;
|
||||||
|
|
|
@ -3001,6 +3001,11 @@ css-declaration-sorter@^4.0.1:
|
||||||
postcss "^7.0.1"
|
postcss "^7.0.1"
|
||||||
timsort "^0.3.0"
|
timsort "^0.3.0"
|
||||||
|
|
||||||
|
css-doodle@^0.7.1:
|
||||||
|
version "0.7.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/css-doodle/-/css-doodle-0.7.1.tgz#477466310df6554ec5182349745194ba37415670"
|
||||||
|
integrity sha512-TRs+7YLgP/yc0EdrL5Us2GRHbhIgf4GsQWAt5WdRxr5pwwpWl8Q9jZle431Z/5u5C29jiEoItjIaKE84xFh+kA==
|
||||||
|
|
||||||
css-hot-loader@^1.4.3:
|
css-hot-loader@^1.4.3:
|
||||||
version "1.4.4"
|
version "1.4.4"
|
||||||
resolved "https://registry.yarnpkg.com/css-hot-loader/-/css-hot-loader-1.4.4.tgz#ae784932cd8b7d092f7f15702af08b3ec9436052"
|
resolved "https://registry.yarnpkg.com/css-hot-loader/-/css-hot-loader-1.4.4.tgz#ae784932cd8b7d092f7f15702af08b3ec9436052"
|
||||||
|
|
Loading…
Reference in a new issue