Skip to content
Snippets Groups Projects
Unverified Commit ef104dba authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

Merge pull request #2516 from bilke/tailwind-1.0

[web] Updated CSS framework Tailwind to 1.0
parents 390cf000 4f6e0b82
No related branches found
No related tags found
No related merge requests found
Showing
with 153 additions and 309 deletions
@tailwind preflight; @tailwind base;
@tailwind components; @tailwind components;
...@@ -6,27 +6,27 @@ ...@@ -6,27 +6,27 @@
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700'); @import url('https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700');
body { body {
color: config('mycolors.text-default'); color: theme('mycolors.text-default');
} }
/* -- Links -- */ /* -- Links -- */
a { a {
color: config('mycolors.text-primary'); color: theme('mycolors.text-primary');
@apply .no-underline; @apply .no-underline;
} }
a:hover { a:hover {
color: config('mycolors.text-accent'); color: theme('mycolors.text-accent');
} }
a.active { a.active {
color: config('mycolors.text-accent'); color: theme('mycolors.text-accent');
} }
nav a { nav a {
color: config('mycolors.text-default'); color: theme('mycolors.text-default');
} }
nav a.active { nav a.active {
color: config('mycolors.text-default'); color: theme('mycolors.text-default');
@apply .border-b-2; @apply .border-b-2;
/* @apply .border-orange; */ /* @apply .border-orange; */
border-color: config('mycolors.text-accent'); border-color: theme('mycolors.text-accent');
} }
/* -- Typography -- */ /* -- Typography -- */
...@@ -35,17 +35,21 @@ h1, h2, h3, h4, h5, h6 { ...@@ -35,17 +35,21 @@ h1, h2, h3, h4, h5, h6 {
@apply .font-medium; @apply .font-medium;
@apply .mt-6; @apply .mt-6;
@apply .mb-4; @apply .mb-4;
} }
h2, h3 { h2, h3 {
@apply .border-b .border-grey-dark; @apply .border-b .border-gray-600;
} }
h1 { h1 {
@apply .mt-0; @apply .mt-0;
} }
h1 { @apply .text-3xl; }
h2 { @apply .text-2xl; }
h3 { @apply .text-xl; }
h4 { @apply .text-lg; }
// Anchor links // Anchor links
h2 > .headerlink, h2 > .headerlink,
h3 > .headerlink, h3 > .headerlink,
...@@ -64,7 +68,7 @@ h4 > .headerlink { ...@@ -64,7 +68,7 @@ h4 > .headerlink {
// Inline code and blocks // Inline code and blocks
code { code {
@apply .p-px; @apply .p-px;
@apply .bg-grey-lighter; @apply .bg-gray-200;
@apply .rounded-sm; @apply .rounded-sm;
} }
...@@ -83,22 +87,22 @@ p, ul, pre { ...@@ -83,22 +87,22 @@ p, ul, pre {
} }
.inverse { .inverse {
color: config('mycolors.text-inverse'); color: theme('mycolors.text-inverse');
background-color: config('mycolors.bg-inverse'); background-color: theme('mycolors.bg-inverse');
} }
.inverse a { .inverse a {
color: config('mycolors.text-inverse'); color: theme('mycolors.text-inverse');
@apply .border-b; @apply .border-b;
border-color: config('mycolors.text-accent'); border-color: theme('mycolors.text-accent');
} }
.inverse a:hover { .inverse a:hover {
border-color: config('mycolors.text-inverse'); border-color: theme('mycolors.text-inverse');
color: config('mycolors.text-accent'); color: theme('mycolors.text-accent');
} }
blockquote { blockquote {
@apply .bg-grey-lighter; @apply .bg-gray-200;
@apply .rounded; @apply .rounded;
@apply .border-l-8; @apply .border-l-8;
@apply .italic; @apply .italic;
...@@ -134,9 +138,6 @@ cite::before { ...@@ -134,9 +138,6 @@ cite::before {
/* -- Table of contents -- */ /* -- Table of contents -- */
#TableOfContents { #TableOfContents {
@apply .text-sm; @apply .text-sm;
ul:first-child {
@apply .list-reset;
}
} }
#TableOfContents>ul:first-child>li>ul>li>a { #TableOfContents>ul:first-child>li>ul>li>a {
@apply .font-bold; @apply .font-bold;
...@@ -152,42 +153,42 @@ cite::before { ...@@ -152,42 +153,42 @@ cite::before {
.win { .win {
@apply .os-div; @apply .os-div;
@apply .border-green-lighter; @apply .border-green-200;
} }
.linux { .linux {
@apply .os-div; @apply .os-div;
@apply .border-orange-lighter; @apply .border-orange-200;
} }
.mac { .mac {
@apply .os-div; @apply .os-div;
@apply .border-blue-lighter; @apply .border-blue-200;
} }
#btn-win.active { #btn-win.active {
@apply .text-green; @apply .text-green-500;
@apply .border-green; @apply .border-green-500;
} }
#btn-linux.active { #btn-linux.active {
@apply .text-orange; @apply .text-orange-500;
@apply .border-orange; @apply .border-orange-500;
} }
#btn-mac.active { #btn-mac.active {
@apply .text-blue; @apply .text-blue-500;
@apply .border-blue; @apply .border-blue-500;
} }
#btn-win:hover { #btn-win:hover {
@apply .border-green; @apply .border-green-500;
} }
#btn-linux:hover { #btn-linux:hover {
@apply .border-orange; @apply .border-orange-500;
} }
#btn-mac:hover { #btn-mac:hover {
@apply .border-blue; @apply .border-blue-500;
} }
/* -- Misc -- */ /* -- Misc -- */
...@@ -205,21 +206,21 @@ table { ...@@ -205,21 +206,21 @@ table {
/* -- Buttons -- */ /* -- Buttons -- */
a.button { a.button {
@apply .bg-white .text-grey-darkest .py-4 .px-8 .border .border-grey-light .shadow .rounded-lg; @apply .bg-white .text-gray-900 .py-4 .px-8 .border .border-gray-300 .shadow .rounded-lg;
@apply .font-serif .font-medium .uppercase; @apply .font-serif .font-medium .uppercase;
color: config('mycolors.text-primary'); color: theme('mycolors.text-primary');
} }
a.button:hover { a.button:hover {
@apply .bg-grey-lightest; @apply .bg-gray-100;
} }
a.btn-inverse { a.btn-inverse {
background: config('mycolors.bg-inverse'); background: theme('mycolors.bg-inverse');
color: config('mycolors.text-inverse'); color: theme('mycolors.text-inverse');
} }
a.btn-inverse:hover { a.btn-inverse:hover {
background: config('mycolors.bg-default'); background: theme('mycolors.bg-default');
color: config('mycolors.text-accent'); color: theme('mycolors.text-accent');
} }
/* -------------------------------- Images ---------------------------------- */ /* -------------------------------- Images ---------------------------------- */
...@@ -237,7 +238,7 @@ figcaption { ...@@ -237,7 +238,7 @@ figcaption {
/* ------------------------------- Components ------------------------------- */ /* ------------------------------- Components ------------------------------- */
.btn { .btn {
@apply text-grey-darkest; @apply text-gray-900;
@apply .px-2; @apply .px-2;
@apply .py-1; @apply .py-1;
@apply .border-b-2; @apply .border-b-2;
...@@ -245,21 +246,21 @@ figcaption { ...@@ -245,21 +246,21 @@ figcaption {
} }
.btn.active { .btn.active {
@apply .border-orange; @apply .border-orange-500;
} }
.note { .note {
@apply .bg-orange-lightest; @apply .bg-orange-100;
@apply .px-4; @apply .px-4;
@apply .py-1; @apply .py-1;
@apply .mb-4; @apply .mb-4;
@apply .border-l-4; @apply .border-l-4;
@apply .border-orange; @apply .border-orange-500;
@apply .-ml-4; @apply .-ml-4;
} }
.note h3 { .note h3 {
@apply .text-orange; @apply .text-orange-500;
@apply .mb-2; @apply .mb-2;
} }
...@@ -269,18 +270,18 @@ figcaption { ...@@ -269,18 +270,18 @@ figcaption {
.slick-prev:before, .slick-prev:before,
.slick-next:before { .slick-next:before {
font-size: 24px; font-size: 24px;
color: config('mycolors.text-primary'); color: theme('mycolors.text-primary');
} }
.slick-dots li button:before, .slick-dots li button:before,
.slick-dots li.slick-active button:before { .slick-dots li.slick-active button:before {
font-size: 8px; font-size: 8px;
color: config('mycolors.text-primary'); color: theme('mycolors.text-primary');
} }
.inverse .slick-prev:before, .inverse .slick-prev:before,
.inverse .slick-next:before { .inverse .slick-next:before {
color: config('mycolors.text-inverse'); color: theme('mycolors.text-inverse');
} }
/* Vertically center images */ /* Vertically center images */
...@@ -297,7 +298,7 @@ figcaption { ...@@ -297,7 +298,7 @@ figcaption {
color: #999; color: #999;
} }
.algolia-autocomplete .aa-dropdown-menu { .algolia-autocomplete .aa-dropdown-menu {
@apply .bg-grey-lightest; @apply .bg-gray-100;
@apply .border-2; @apply .border-2;
@apply .p-1; @apply .p-1;
@apply .text-sm; @apply .text-sm;
...@@ -307,11 +308,11 @@ figcaption { ...@@ -307,11 +308,11 @@ figcaption {
@apply .p-1; @apply .p-1;
} }
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor { .algolia-autocomplete .aa-dropdown-menu .aa-suggestion.aa-cursor {
@apply .bg-blue-lighter; @apply .bg-blue-200;
} }
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em { .algolia-autocomplete .aa-dropdown-menu .aa-suggestion em {
@apply .font-bold; @apply .font-bold;
@apply .text-orange; @apply .text-orange-500;
} }
@tailwind utilities; @tailwind utilities;
......
...@@ -8,6 +8,7 @@ pygmentsstyle = 'friendly' ...@@ -8,6 +8,7 @@ pygmentsstyle = 'friendly'
enableGitInfo = true enableGitInfo = true
canonifyURLs = true canonifyURLs = true
staticDir = ["dist", "static"] staticDir = ["dist", "static"]
disableKinds = ["taxonomyTerm"]
[params] [params]
alert = "" alert = ""
......
{{ define "main" }} {{ define "main" }}
<div class="container"> <div class="container">
<h1>{{ .Title }} {{ if .Params.subtitle }}<span class="text-regular text-grey-dark">– {{ .Params.subtitle }}</span>{{ end }}</h1> <h1>{{ .Title }} {{ if .Params.subtitle }}<span class="text-regular text-gray-600">– {{ .Params.subtitle }}</span>{{ end }}</h1>
<img class="w-1/6 float-left mr-4 mb-2 shadow-md" src="../{{ .Params.book_cover }}" alt=""> <img class="w-1/6 float-left mr-4 mb-2 shadow-md" src="../{{ .Params.book_cover }}" alt="">
{{ .Content }} {{ .Content }}
......
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
{{ if eq $subsection "tools"}}Tools{{ end }} {{ if eq $subsection "tools"}}Tools{{ end }}
</span> </span>
</div> </div>
<ul class="list-reset text-sm"> <ul class="text-sm">
{{ $currentPage := . }} {{ $currentPage := . }}
{{ $currentMenu := index .Site.Menus $subsection }} {{ $currentMenu := index .Site.Menus $subsection }}
{{ range $currentMenu }} {{ range $currentMenu }}
......
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
<div class="w-full md:w-1/2 px-4 md:px-2"> <div class="w-full md:w-1/2 px-4 md:px-2">
<h2 class="mt-0">Latest News</h2> <h2 class="mt-0">Latest News</h2>
<div class="py-0 lg:px-4"> <div class="py-0 lg:px-4">
<ul id="news" class="list-reset"> <ul id="news">
</ul> </ul>
</div> </div>
</div> </div>
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
<div class="w-full md:w-1/2 px-4 md:px-2"> <div class="w-full md:w-1/2 px-4 md:px-2">
<h2 class="mt-0">Latest Discussions</h2> <h2 class="mt-0">Latest Discussions</h2>
<div class="py-0 lg:px-4"> <div class="py-0 lg:px-4">
<ul id="discussions" class="list-reset"> <ul id="discussions">
</ul> </ul>
</div> </div>
</div> </div>
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
{{ .Hugo.Generator }} {{ hugo.Generator }}
<meta name="description" content="OpenGeoSys"> <meta name="description" content="OpenGeoSys">
<meta name="author" content="OpenGeoSys Community"> <meta name="author" content="OpenGeoSys Community">
......
<div class="mt-20 text-sm text-grey-darker"> <div class="mt-20 text-sm text-gray-700">
<p>This article was written by {{ .Params.Author }}. If you are missing something or you find an error please <a href="mailto:ogs-devs@googlegroups.com">let us know</a>. <p>This article was written by {{ .Params.Author }}. If you are missing something or you find an error please <a href="mailto:ogs-devs@googlegroups.com">let us know</a>.
Generated with <a href="https://gohugo.io">Hugo</a> {{ .Hugo.Version }}. Last revision: {{ .Lastmod.Format "January 2, 2006" }} {{ if .IsPage }}<em> Generated with <a href="https://gohugo.io">Hugo</a> {{ hugo.Version }}. Last revision: {{ .Lastmod.Format "January 2, 2006" }} {{ if .IsPage }}<em>
{{ with .GitInfo }} {{ with .GitInfo }}
<br> <br>
Commit: {{ .Subject }} <a href="https://github.com/ufz/ogs/commit/{{ .AbbreviatedHash }}">{{ .AbbreviatedHash }}</a> Commit: {{ .Subject }} <a href="https://github.com/ufz/ogs/commit/{{ .AbbreviatedHash }}">{{ .AbbreviatedHash }}</a>
......
<form class="w-full max-w-sm text-sm md:text-base" id="site-search-form" role="search"> <form class="w-full max-w-sm text-sm md:text-base" id="site-search-form" role="search">
<fieldset class="flex items-center justify-end"> <fieldset class="flex items-center justify-end">
<label class="mx-2 hidden md:block" for="search-input"><i class="far fa-search"></i></label> <label class="mx-2 hidden md:block" for="search-input"><i class="far fa-search"></i></label>
<input type="search" id="search-input" class="bg-grey-lighter appearance-none border-2 border-grey-lighter hover:border-orange rounded w-auto px-2 text-grey-darker" placeholder="Search the Docs" name="email-address" value=""> <input type="search" id="search-input" class="bg-gray-200 appearance-none border-2 border-gray-200 hover:border-orange rounded w-auto px-2 text-gray-600" placeholder="Search the Docs" name="email-address" value="">
</fieldset> </fieldset>
</form> </form>
...@@ -7,9 +7,9 @@ ...@@ -7,9 +7,9 @@
<div class="w-1/6 float-left mr-4 mb-2"> <div class="w-1/6 float-left mr-4 mb-2">
<img src="/books/{{ .Params.book_cover }}" alt="Cover"> <img src="/books/{{ .Params.book_cover }}" alt="Cover">
</div> </div>
<p class="text-sm text-grey-dark mb-1">{{ .Params.book_type }}</p> <p class="text-sm text-gray-600 mb-1">{{ .Params.book_type }}</p>
<a class="text-black font-bold text-xl mb-2" href="{{ .Permalink }}">{{ .Title }}</a> <span class="text-sm text-grey-dark">{{ .Params.subtitle }}</span> <a class="text-black font-bold text-xl mb-2" href="{{ .Permalink }}">{{ .Title }}</a> <span class="text-sm text-600-dark">{{ .Params.subtitle }}</span>
<p class="text-grey-darker text-sm">{{ .Content | truncate 500 }}</p> <p class="text-gray-700 text-sm">{{ .Content | truncate 500 }}</p>
<p><a href="{{.Permalink}}">Show details <i class="far fa-arrow-right"></i></a></p> <p><a href="{{.Permalink}}">Show details <i class="far fa-arrow-right"></i></a></p>
<div style="clear: both; font-size: 0;">&nbsp;</div> <div style="clear: both; font-size: 0;">&nbsp;</div>
</div> </div>
......
...@@ -13,7 +13,7 @@ ...@@ -13,7 +13,7 @@
Downloads for the current development version of OpenGeoSys can be found on our continuous integration system: Downloads for the current development version of OpenGeoSys can be found on our continuous integration system:
</p> </p>
<p> <p>
<a href="https://jenkins.opengeosys.org/job/ufz/job/ogs/job/master/lastSuccessfulBuild/artifact/build"><i class="fas fa-arrow-right"></i> Latest successful Jenkins Build with Downloads</a> <span class="text-sm text-grey-dark"></span> <a href="https://jenkins.opengeosys.org/job/ufz/job/ogs/job/master/lastSuccessfulBuild/artifact/build"><i class="fas fa-arrow-right"></i> Latest successful Jenkins Build with Downloads</a> <span class="text-sm text-gray-600"></span>
</p> </p>
</div> </div>
......
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
"hugo-algolia": "^1.2.13", "hugo-algolia": "^1.2.13",
"postcss-cli": "^6.1.1", "postcss-cli": "^6.1.1",
"postcss-import": "^12.0.1", "postcss-import": "^12.0.1",
"tailwindcss": "^0.7.4" "tailwindcss": "^1.0"
} }
} }
var tailwindcss = require('tailwindcss'); var tailwindcss = require('tailwindcss');
module.exports = { module.exports = {
plugins: [ plugins: [
tailwindcss('./tailwind.js'), tailwindcss('./tailwind.config.js'),
require('autoprefixer'), require('autoprefixer'),
require('postcss-import'), require('postcss-import'),
] ]
......
No preview for this file type
...@@ -24,8 +24,6 @@ View the full documentation at https://tailwindcss.com. ...@@ -24,8 +24,6 @@ View the full documentation at https://tailwindcss.com.
| |
*/ */
let defaultConfig = require('tailwindcss/defaultConfig')()
let primaryColor = "#104EB2"; let primaryColor = "#104EB2";
let accentColor = "#f6993f"; let accentColor = "#f6993f";
let textColor = "#333333"; let textColor = "#333333";
...@@ -46,53 +44,51 @@ let mycolors = { ...@@ -46,53 +44,51 @@ let mycolors = {
} }
module.exports = { module.exports = {
mycolors: mycolors, theme: {
container: {
fonts: {
'sans': [
'Open Sans',
'system-ui',
'BlinkMacSystemFont',
'-apple-system',
'Segoe UI',
'Oxygen',
'Ubuntu',
'Cantarell',
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
'sans-serif',
],
'serif': [
'Roboto',
'Constantia',
'Lucida Bright',
'Lucidabright',
'Lucida Serif',
'Lucida',
'DejaVu Serif',
'Bitstream Vera Serif',
'Liberation Serif',
'Georgia',
'serif',
],
'serif-caps': [
'serif'
],
'mono': [
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
]
},
plugins: [
require('tailwindcss/plugins/container')({
center: true, center: true,
// padding: '1rem', padding: '2rem',
}), },
], mycolors: mycolors,
fontFamily: {
'sans': [
'Open Sans',
'system-ui',
'BlinkMacSystemFont',
'-apple-system',
'Segoe UI',
'Oxygen',
'Ubuntu',
'Cantarell',
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
'sans-serif',
],
'serif': [
'Roboto',
'Constantia',
'Lucida Bright',
'Lucidabright',
'Lucida Serif',
'Lucida',
'DejaVu Serif',
'Bitstream Vera Serif',
'Liberation Serif',
'Georgia',
'serif',
],
'serif-caps': [
'serif'
],
'mono': [
'Menlo',
'Monaco',
'Consolas',
'Liberation Mono',
'Courier New',
'monospace',
]
},
},
} }
...@@ -56,11 +56,6 @@ ansi-regex@^3.0.0: ...@@ -56,11 +56,6 @@ ansi-regex@^3.0.0:
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998"
integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=
ansi-styles@^2.2.1:
version "2.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe"
integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=
ansi-styles@^3.2.1: ansi-styles@^3.2.1:
version "3.2.1" version "3.2.1"
resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d"
...@@ -160,39 +155,6 @@ autoprefixer@^9.0.0, autoprefixer@^9.4.5: ...@@ -160,39 +155,6 @@ autoprefixer@^9.0.0, autoprefixer@^9.4.5:
postcss "^7.0.14" postcss "^7.0.14"
postcss-value-parser "^3.3.1" postcss-value-parser "^3.3.1"
babel-extract-comments@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/babel-extract-comments/-/babel-extract-comments-1.0.0.tgz#0a2aedf81417ed391b85e18b4614e693a0351a21"
integrity sha512-qWWzi4TlddohA91bFwgt6zO/J0X+io7Qp184Fw0m2JYRSTZnJbFR8+07KmzudHCZgOiKRCrjhylwv9Xd8gfhVQ==
dependencies:
babylon "^6.18.0"
babel-plugin-syntax-object-rest-spread@^6.8.0:
version "6.13.0"
resolved "https://registry.yarnpkg.com/babel-plugin-syntax-object-rest-spread/-/babel-plugin-syntax-object-rest-spread-6.13.0.tgz#fd6536f2bce13836ffa3a5458c4903a597bb3bf5"
integrity sha1-/WU28rzhODb/o6VFjEkDpZe7O/U=
babel-plugin-transform-object-rest-spread@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-plugin-transform-object-rest-spread/-/babel-plugin-transform-object-rest-spread-6.26.0.tgz#0f36692d50fef6b7e2d4b3ac1478137a963b7b06"
integrity sha1-DzZpLVD+9rfi1LOsFHgTepY7ewY=
dependencies:
babel-plugin-syntax-object-rest-spread "^6.8.0"
babel-runtime "^6.26.0"
babel-runtime@^6.26.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe"
integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4=
dependencies:
core-js "^2.4.0"
regenerator-runtime "^0.11.0"
babylon@^6.18.0:
version "6.18.0"
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==
balanced-match@^1.0.0: balanced-match@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767"
...@@ -289,17 +251,6 @@ caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000932: ...@@ -289,17 +251,6 @@ caniuse-lite@^1.0.30000929, caniuse-lite@^1.0.30000932:
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000936.tgz#5d33b118763988bf721b9b8ad436d0400e4a116b" resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000936.tgz#5d33b118763988bf721b9b8ad436d0400e4a116b"
integrity sha512-orX4IdpbFhdNO7bTBhSbahp1EBpqzBc+qrvTRVUFfZgA4zta7TdM6PN5ZxkEUgDnz36m+PfWGcdX7AVfFWItJw== integrity sha512-orX4IdpbFhdNO7bTBhSbahp1EBpqzBc+qrvTRVUFfZgA4zta7TdM6PN5ZxkEUgDnz36m+PfWGcdX7AVfFWItJw==
chalk@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
dependencies:
ansi-styles "^2.2.1"
escape-string-regexp "^1.0.2"
has-ansi "^2.0.0"
strip-ansi "^3.0.0"
supports-color "^2.0.0"
chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2: chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2" version "2.4.2"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
...@@ -382,11 +333,6 @@ commander@^2.11.0: ...@@ -382,11 +333,6 @@ commander@^2.11.0:
resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a" resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg== integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
comment-regex@^1.0.0:
version "1.0.1"
resolved "https://registry.yarnpkg.com/comment-regex/-/comment-regex-1.0.1.tgz#e070d2c4db33231955d0979d27c918fcb6f93565"
integrity sha512-IWlN//Yfby92tOIje7J18HkNmWRR7JESA/BK8W7wqY/akITpU5B0JQWnbTjCfdChSrDNb0DrdA9jfAxiiBXyiQ==
component-emitter@^1.2.1: component-emitter@^1.2.1:
version "1.2.1" version "1.2.1"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6" resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
...@@ -407,11 +353,6 @@ copy-descriptor@^0.1.0: ...@@ -407,11 +353,6 @@ copy-descriptor@^0.1.0:
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d" resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40= integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
core-js@^2.4.0:
version "2.6.4"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.4.tgz#b8897c062c4d769dd30a0ac5c73976c47f92ea0d"
integrity sha512-05qQ5hXShcqGkPZpXEFLIpxayZscVD2kuMBZewxiIPPEagukO4mqgPA9CWhUvFBJfy3ODdK2p9xyHh7FTU9/7A==
core-util-is@~1.0.0: core-util-is@~1.0.0:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7"
...@@ -438,16 +379,16 @@ cross-spawn@^6.0.0: ...@@ -438,16 +379,16 @@ cross-spawn@^6.0.0:
shebang-command "^1.2.0" shebang-command "^1.2.0"
which "^1.2.9" which "^1.2.9"
css.escape@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb"
integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s=
cssesc@^2.0.0: cssesc@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703" resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-2.0.0.tgz#3b13bd1bb1cb36e1bcb5a4dcd27f54c5dcb35703"
integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg== integrity sha512-MsCAG1z9lPdoO/IUMLSBWBSVxVtJ1395VGIQ+Fc2gNdkQ1hNDnQdw3YhA71WJCBW1vdwA0cAnk/DnW6bqoEUYg==
cssesc@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee"
integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==
debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8: debug@^2.1.2, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8:
version "2.6.9" version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
...@@ -492,11 +433,6 @@ define-property@^2.0.2: ...@@ -492,11 +433,6 @@ define-property@^2.0.2:
is-descriptor "^1.0.2" is-descriptor "^1.0.2"
isobject "^3.0.1" isobject "^3.0.1"
defined@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
delegates@^1.0.0: delegates@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a" resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
...@@ -557,7 +493,7 @@ es6-promise@^4.1.0: ...@@ -557,7 +493,7 @@ es6-promise@^4.1.0:
resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.5.tgz#da6d0d5692efb461e082c14817fe2427d8f5d054" resolved "https://registry.yarnpkg.com/es6-promise/-/es6-promise-4.2.5.tgz#da6d0d5692efb461e082c14817fe2427d8f5d054"
integrity sha512-n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg== integrity sha512-n6wvpdE43VFtJq+lUDYDBFUwV8TZbuGXLV4D6wKafg13ldznKsyEvatubnmUe31zcvelSzOHF+XbaT+Bl9ObDg==
escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: escape-string-regexp@^1.0.5:
version "1.0.5" version "1.0.5"
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
...@@ -673,19 +609,19 @@ fragment-cache@^0.2.1: ...@@ -673,19 +609,19 @@ fragment-cache@^0.2.1:
dependencies: dependencies:
map-cache "^0.2.2" map-cache "^0.2.2"
fs-extra@^4.0.2: fs-extra@^7.0.0:
version "4.0.3" version "7.0.1"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-4.0.3.tgz#0d852122e5bc5beb453fb028e9c0c9bf36340c94" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9"
integrity sha512-q6rbdDd1o2mAnQreO7YADIxf/Whx4AHBiRf6d+/cVT8h44ss+lHgxf1FemcqDnQt9X3ct4McHr+JMGlYSsK7Cg== integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw==
dependencies: dependencies:
graceful-fs "^4.1.2" graceful-fs "^4.1.2"
jsonfile "^4.0.0" jsonfile "^4.0.0"
universalify "^0.1.0" universalify "^0.1.0"
fs-extra@^7.0.0: fs-extra@^8.0.0:
version "7.0.1" version "8.0.1"
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-7.0.1.tgz#4f189c44aa123b895f722804f55ea23eadc348e9" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.0.1.tgz#90294081f978b1f182f347a440a209154344285b"
integrity sha512-YJDaCJZEnBmcbw13fvdAM9AwNOJwOzrE4pqMqBq5nFiEqXUqHwlK4B+3pUw6JNvfSPtX05xFHtYy/1ni01eGCw== integrity sha512-W+XLrggcDzlle47X/XnS7FXrXu9sDo+Ze9zpndeBxdgv88FHLm1HtmkhEwavruS6koanBjp098rUpHs65EmG7A==
dependencies: dependencies:
graceful-fs "^4.1.2" graceful-fs "^4.1.2"
jsonfile "^4.0.0" jsonfile "^4.0.0"
...@@ -711,11 +647,6 @@ fsevents@^1.2.7: ...@@ -711,11 +647,6 @@ fsevents@^1.2.7:
nan "^2.9.2" nan "^2.9.2"
node-pre-gyp "^0.10.0" node-pre-gyp "^0.10.0"
gather-stream@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/gather-stream/-/gather-stream-1.0.0.tgz#b33994af457a8115700d410f317733cbe7a0904b"
integrity sha1-szmUr0V6gRVwDUEPMXczy+egkEs=
gauge@~2.7.3: gauge@~2.7.3:
version "2.7.4" version "2.7.4"
resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7" resolved "https://registry.yarnpkg.com/gauge/-/gauge-2.7.4.tgz#2c03405c7538c39d7eb37b317022e325fb018bf7"
...@@ -813,18 +744,6 @@ gray-matter@^3.0.2: ...@@ -813,18 +744,6 @@ gray-matter@^3.0.2:
kind-of "^5.0.2" kind-of "^5.0.2"
strip-bom-string "^1.0.0" strip-bom-string "^1.0.0"
has-ansi@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91"
integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=
dependencies:
ansi-regex "^2.0.0"
has-flag@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-1.0.0.tgz#9d9e793165ce017a00f00418c43f942a7b1d11fa"
integrity sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=
has-flag@^3.0.0: has-flag@^3.0.0:
version "3.0.0" version "3.0.0"
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
...@@ -1108,11 +1027,6 @@ isobject@^3.0.0, isobject@^3.0.1: ...@@ -1108,11 +1027,6 @@ isobject@^3.0.0, isobject@^3.0.1:
resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df" resolved "https://registry.yarnpkg.com/isobject/-/isobject-3.0.1.tgz#4e431e92b11a9731636aa1f9c8d1ccbcfdab78df"
integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8= integrity sha1-TkMekrEalzFjaqH5yNHMvP2reN8=
js-base64@^2.1.9:
version "2.5.1"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121"
integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==
js-yaml@^3.10.0, js-yaml@^3.9.0: js-yaml@^3.10.0, js-yaml@^3.9.0:
version "3.13.1" version "3.13.1"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847" resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
...@@ -1182,7 +1096,7 @@ lodash.toarray@^4.4.0: ...@@ -1182,7 +1096,7 @@ lodash.toarray@^4.4.0:
resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561"
integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE=
lodash@^4.17.11, lodash@^4.17.4, lodash@^4.17.5: lodash@^4.17.11, lodash@^4.17.4:
version "4.17.11" version "4.17.11"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d" resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg== integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
...@@ -1401,6 +1315,11 @@ normalize-range@^0.1.2: ...@@ -1401,6 +1315,11 @@ normalize-range@^0.1.2:
resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942"
integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=
normalize.css@^8.0.1:
version "8.0.1"
resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3"
integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg==
npm-bundled@^1.0.1: npm-bundled@^1.0.1:
version "1.0.6" version "1.0.6"
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd" resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
...@@ -1592,22 +1511,6 @@ path-type@^3.0.0: ...@@ -1592,22 +1511,6 @@ path-type@^3.0.0:
dependencies: dependencies:
pify "^3.0.0" pify "^3.0.0"
perfectionist@^2.4.0:
version "2.4.0"
resolved "https://registry.yarnpkg.com/perfectionist/-/perfectionist-2.4.0.tgz#c147ad3714e126467f1764129ee72df861d47ea0"
integrity sha1-wUetNxThJkZ/F2QSnuct+GHUfqA=
dependencies:
comment-regex "^1.0.0"
defined "^1.0.0"
minimist "^1.2.0"
postcss "^5.0.8"
postcss-scss "^0.3.0"
postcss-value-parser "^3.3.0"
read-file-stdin "^0.2.0"
string.prototype.repeat "^0.2.0"
vendors "^1.0.0"
write-file-stdout "0.0.2"
pify@^2.3.0: pify@^2.3.0:
version "2.3.0" version "2.3.0"
resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c" resolved "https://registry.yarnpkg.com/pify/-/pify-2.3.0.tgz#ed141a6ac043a849ea588498e7dca8b15330e90c"
...@@ -1700,14 +1603,7 @@ postcss-reporter@^6.0.0: ...@@ -1700,14 +1603,7 @@ postcss-reporter@^6.0.0:
log-symbols "^2.2.0" log-symbols "^2.2.0"
postcss "^7.0.7" postcss "^7.0.7"
postcss-scss@^0.3.0: postcss-selector-parser@^5.0.0-rc.4:
version "0.3.1"
resolved "https://registry.yarnpkg.com/postcss-scss/-/postcss-scss-0.3.1.tgz#65c610d8e2a7ee0e62b1835b71b8870734816e4b"
integrity sha1-ZcYQ2OKn7g5isYNbcbiHBzSBbks=
dependencies:
postcss "^5.2.4"
postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.4:
version "5.0.0" version "5.0.0"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c" resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-5.0.0.tgz#249044356697b33b64f1a8f7c80922dddee7195c"
integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ== integrity sha512-w+zLE5Jhg6Liz8+rQOWEAwtwkyqpfnmsinXjXg6cY7YIONZZtgvE0v2O0uhQBs0peNomOJwWRKt6JBfTdTd3OQ==
...@@ -1716,21 +1612,20 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.4: ...@@ -1716,21 +1612,20 @@ postcss-selector-parser@^5.0.0, postcss-selector-parser@^5.0.0-rc.4:
indexes-of "^1.0.1" indexes-of "^1.0.1"
uniq "^1.0.1" uniq "^1.0.1"
postcss-selector-parser@^6.0.0:
version "6.0.2"
resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c"
integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg==
dependencies:
cssesc "^3.0.0"
indexes-of "^1.0.1"
uniq "^1.0.1"
postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1: postcss-value-parser@^3.2.3, postcss-value-parser@^3.3.0, postcss-value-parser@^3.3.1:
version "3.3.1" version "3.3.1"
resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281"
integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==
postcss@^5.0.8, postcss@^5.2.4:
version "5.2.18"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-5.2.18.tgz#badfa1497d46244f6390f58b319830d9107853c5"
integrity sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==
dependencies:
chalk "^1.1.3"
js-base64 "^2.1.9"
source-map "^0.5.6"
supports-color "^3.2.3"
postcss@^6.0.9: postcss@^6.0.9:
version "6.0.23" version "6.0.23"
resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324"
...@@ -1794,13 +1689,6 @@ read-cache@^1.0.0: ...@@ -1794,13 +1689,6 @@ read-cache@^1.0.0:
dependencies: dependencies:
pify "^2.3.0" pify "^2.3.0"
read-file-stdin@^0.2.0:
version "0.2.1"
resolved "https://registry.yarnpkg.com/read-file-stdin/-/read-file-stdin-0.2.1.tgz#25eccff3a153b6809afacb23ee15387db9e0ee61"
integrity sha1-JezP86FTtoCa+ssj7hU4fbng7mE=
dependencies:
gather-stream "^1.0.0"
readable-stream@^2.0.2, readable-stream@^2.0.6: readable-stream@^2.0.2, readable-stream@^2.0.6:
version "2.3.6" version "2.3.6"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf"
...@@ -1830,11 +1718,6 @@ reduce@^1.0.1: ...@@ -1830,11 +1718,6 @@ reduce@^1.0.1:
dependencies: dependencies:
object-keys "~1.0.0" object-keys "~1.0.0"
regenerator-runtime@^0.11.0:
version "0.11.1"
resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9"
integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==
regex-not@^1.0.0, regex-not@^1.0.2: regex-not@^1.0.0, regex-not@^1.0.2:
version "1.0.2" version "1.0.2"
resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c"
...@@ -2079,11 +1962,6 @@ string-width@^1.0.1: ...@@ -2079,11 +1962,6 @@ string-width@^1.0.1:
is-fullwidth-code-point "^2.0.0" is-fullwidth-code-point "^2.0.0"
strip-ansi "^4.0.0" strip-ansi "^4.0.0"
string.prototype.repeat@^0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/string.prototype.repeat/-/string.prototype.repeat-0.2.0.tgz#aba36de08dcee6a5a337d49b2ea1da1b28fc0ecf"
integrity sha1-q6Nt4I3O5qWjN9SbLqHaGyj8Ds8=
string_decoder@~1.1.1: string_decoder@~1.1.1:
version "1.1.1" version "1.1.1"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8"
...@@ -2110,14 +1988,6 @@ strip-bom-string@^1.0.0: ...@@ -2110,14 +1988,6 @@ strip-bom-string@^1.0.0:
resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92" resolved "https://registry.yarnpkg.com/strip-bom-string/-/strip-bom-string-1.0.0.tgz#e5211e9224369fbb81d633a2f00044dc8cedad92"
integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI= integrity sha1-5SEekiQ2n7uB1jOi8ABE3IztrZI=
strip-comments@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/strip-comments/-/strip-comments-1.0.2.tgz#82b9c45e7f05873bee53f37168af930aa368679d"
integrity sha512-kL97alc47hoyIQSV165tTt9rG5dn4w1dNnBhOQ3bOU1Nc1hel09jnXANaHJ7vzHLd4Ju8kseDGzlev96pghLFw==
dependencies:
babel-extract-comments "^1.0.0"
babel-plugin-transform-object-rest-spread "^6.26.0"
strip-eof@^1.0.0: strip-eof@^1.0.0:
version "1.0.0" version "1.0.0"
resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf" resolved "https://registry.yarnpkg.com/strip-eof/-/strip-eof-1.0.0.tgz#bb43ff5598a6eb05d89b59fcd129c983313606bf"
...@@ -2133,18 +2003,6 @@ striptags@^3.0.1: ...@@ -2133,18 +2003,6 @@ striptags@^3.0.1:
resolved "https://registry.yarnpkg.com/striptags/-/striptags-3.1.1.tgz#c8c3e7fdd6fb4bb3a32a3b752e5b5e3e38093ebd" resolved "https://registry.yarnpkg.com/striptags/-/striptags-3.1.1.tgz#c8c3e7fdd6fb4bb3a32a3b752e5b5e3e38093ebd"
integrity sha1-yMPn/db7S7OjKjt1LltePjgJPr0= integrity sha1-yMPn/db7S7OjKjt1LltePjgJPr0=
supports-color@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7"
integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=
supports-color@^3.2.3:
version "3.2.3"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-3.2.3.tgz#65ac0504b3954171d8a64946b2ae3cbb8a5f54f6"
integrity sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=
dependencies:
has-flag "^1.0.0"
supports-color@^5.3.0, supports-color@^5.4.0: supports-color@^5.3.0, supports-color@^5.4.0:
version "5.5.0" version "5.5.0"
resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f"
...@@ -2159,26 +2017,24 @@ supports-color@^6.1.0: ...@@ -2159,26 +2017,24 @@ supports-color@^6.1.0:
dependencies: dependencies:
has-flag "^3.0.0" has-flag "^3.0.0"
tailwindcss@^0.7.4: tailwindcss@^1.0:
version "0.7.4" version "1.0.3"
resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-0.7.4.tgz#fb7926821d42eacdc12e6621a49d21f37a3ff9e9" resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.0.3.tgz#12845ec6c9542e97f07ea2bd8af4ba47e8a888d1"
integrity sha512-+GeQjHRJ2VmeLkrNwMCbPDfm2cc5P8eoc7n+DtZfI8oQdlo5eSHqsIlPEuZOtoqQlIALsd2jAggWrUUBFGP2ow== integrity sha512-myjuB0hqqLiXQCea0hEeZfrQVxzmkhtgi7HsuwJgXaVPgBp+7r/wywOvkDTUS8sQ1LraF43OLatip0yhfo/FtA==
dependencies: dependencies:
autoprefixer "^9.4.5" autoprefixer "^9.4.5"
bytes "^3.0.0" bytes "^3.0.0"
chalk "^2.4.1" chalk "^2.4.1"
css.escape "^1.5.1" fs-extra "^8.0.0"
fs-extra "^4.0.2" lodash "^4.17.11"
lodash "^4.17.5"
node-emoji "^1.8.1" node-emoji "^1.8.1"
perfectionist "^2.4.0" normalize.css "^8.0.1"
postcss "^7.0.11" postcss "^7.0.11"
postcss-functions "^3.0.0" postcss-functions "^3.0.0"
postcss-js "^2.0.0" postcss-js "^2.0.0"
postcss-nested "^4.1.1" postcss-nested "^4.1.1"
postcss-selector-parser "^5.0.0" postcss-selector-parser "^6.0.0"
pretty-hrtime "^1.0.3" pretty-hrtime "^1.0.3"
strip-comments "^1.0.2"
tar@^4: tar@^4:
version "4.4.8" version "4.4.8"
...@@ -2314,11 +2170,6 @@ util-deprecate@~1.0.1: ...@@ -2314,11 +2170,6 @@ util-deprecate@~1.0.1:
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
vendors@^1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/vendors/-/vendors-1.0.2.tgz#7fcb5eef9f5623b156bcea89ec37d63676f21801"
integrity sha512-w/hry/368nO21AN9QljsaIhb9ZiZtZARoVH5f3CsFbawdLdayCgKRPup7CggujvySMxx0I91NOyxdVENohprLQ==
which-module@^2.0.0: which-module@^2.0.0:
version "2.0.0" version "2.0.0"
resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a" resolved "https://registry.yarnpkg.com/which-module/-/which-module-2.0.0.tgz#d9ef07dce77b9902b8a3a8fa4b31c3e3f7e6e87a"
...@@ -2351,11 +2202,6 @@ wrappy@1: ...@@ -2351,11 +2202,6 @@ wrappy@1:
resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f"
integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=
write-file-stdout@0.0.2:
version "0.0.2"
resolved "https://registry.yarnpkg.com/write-file-stdout/-/write-file-stdout-0.0.2.tgz#c252d7c7c5b1b402897630e3453c7bfe690d9ca1"
integrity sha1-wlLXx8WxtAKJdjDjRTx7/mkNnKE=
"y18n@^3.2.1 || ^4.0.0": "y18n@^3.2.1 || ^4.0.0":
version "4.0.0" version "4.0.0"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b" resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.0.tgz#95ef94f85ecc81d007c264e190a120f0a3c8566b"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment