├── .github └── assets │ ├── array.png │ └── tw.png ├── .gitignore ├── LICENSE.md ├── README.md ├── example ├── dist │ ├── tailwind.css │ └── tailwind.ts ├── package.json ├── postcss.config.js ├── tailwind.config.js ├── tailwind.css └── yarn.lock ├── package.json ├── src ├── classes.ts ├── file.ts ├── plugin.ts ├── selectors.ts ├── separator.ts ├── source.ts └── tailwindcss.d.ts ├── tsconfig.json └── yarn.lock /.github/assets/array.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieutu/tailwind-ts/c5671703c5b28276586774496a33f19d2c5eab87/.github/assets/array.png -------------------------------------------------------------------------------- /.github/assets/tw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mathieutu/tailwind-ts/c5671703c5b28276586774496a33f19d2c5eab87/.github/assets/tw.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | # The MIT License (MIT) 2 | 3 | Copyright (c) Mathieu TUDISCO 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Tailwind TS Generator 2 | 3 | [![npm](https://img.shields.io/npm/v/tailwind-ts.svg)](https://www.npmjs.com/package/tailwind-ts) 4 | [![npm](https://img.shields.io/npm/dt/tailwind-ts.svg)](https://www.npmjs.com/package/tailwind-ts) 5 | 6 | 7 | **⚡️ Generate Tailwind type from your own configuration!** 8 | 9 | This package is a [Tailwindcss](https://tailwindcss.com) plugin that generates code out of your tailwind configuration. 10 | It has full support of your personalised config, and your plugins. 11 | 12 | For example, it is used daily with `@tailwind/ui` and `@tailwindcss/custom-forms`. 13 | It doesn't change anything to your other postcss plugins like `autoprefixer` and `purgecss`. 14 | 15 |
16 | 17 | usage with array 18 | 19 | usage with helper 20 | 21 |
22 | 23 | ## Installation 24 | Add it to your dependencies 25 | 26 | ```bash 27 | yarn add -D tailwind-ts 28 | 29 | # or 30 | npm install --save-dev tailwind-ts 31 | ``` 32 | 33 | Add it at the end of the [plugins list](https://tailwindcss.com/docs/configuration/#plugins) in your `tailwind.config.js` file. 34 | ```js 35 | module.exports = { 36 | ... 37 | plugins: [ 38 | ... 39 | require('tailwind-ts'), 40 | ], 41 | }; 42 | ``` 43 | 44 | And _voilà_! 45 | 46 | Now a `tailwind-types.ts` file will be generated each time you generate your css with tailwind. 47 | 48 | ## Configuration 49 | 50 | You can select what you want to include in the generated file by passing options to the plugin: 51 | 52 | ```js 53 | module.exports = { 54 | ... 55 | plugins: [ 56 | ... 57 | require('tailwind-ts')({ path: 'my-custom-file.ts' }), 58 | ], 59 | }; 60 | ``` 61 | 62 | | Option | Type | Default value | Usage | 63 | |----------------------- |---------|----------------------|---------------------------------------------------------------------- | 64 | | path | string | `'tailwind-type.ts'` | Path of the generated file (relative to your configuration file) | 65 | | exportClassesChoice | boolean | `true` | To generate the `TailwindClass` type (see [usage](#tailwindclass)) | 66 | | exportClassesList | boolean | `false` | To generate the `TailwindClasses` type (see [usage](#tailwindclasses)) | 67 | | exportClassNamesHelper | boolean | `false` | To generate the `tw` helper (see [usage](#tw)) | 68 | | exportConstants | boolean | `false` | To generate all the tailwind inspired constants (see [usage](#tailwind-constants)) | 69 | 70 | 71 | ## Usage 72 | 73 | ### TailwindClass 74 | With `exportClassesChoice` set, the package will generate and export an 75 | [union type](https://www.tutorialsteacher.com/typescript/typescript-union) `TailwindClass` with all Tailwind available utilities : 76 | 77 | ```ts 78 | export type TailwindClass = 'sr-only' | 'not-sr-only' | 'focus:sr-only' | ... 79 | ``` 80 | 81 | You can use it directly by importing the type from the generated file. 82 | 83 | For example: 84 | ```tsx 85 | import { TailwindClass } from './tailwind-types' 86 | const globalPaddingClass: TailwindClass = 'px-2.5' 87 | 88 | const btnClasses: TailwindClass[] = [ 89 | 'inline-flex', 'items-center', 90 | globalPaddingClass, 'py-1.5', 'border', 'border-transparent', 91 | 'text-xs', 'leading-4', 'font-medium', 'rounded', 92 | 'text-indigo-700', 'bg-indigo-100', 93 | 'hover:bg-indigo-50', 94 | ... 95 | ] 96 | 97 | return 98 | ``` 99 | 100 | 101 | ### tailwindClasses 102 | With `exportClassesList` set, the package will generate and export an array `tailwindClasses` 103 | which lists all Tailwind available utilities: 104 | 105 | ```ts 106 | export const tailwindClasses = [ 107 | 'sr-only', 108 | 'not-sr-only', 109 | 'focus:sr-only', 110 | ... 111 | ] as const 112 | ``` 113 | 114 | You can use it directly by importing the const from the generated file. 115 | 116 | For example: 117 | ```ts 118 | import { tailwindClasses } from './tailwind-types' 119 | 120 | const xlClasses = tailwindClasses 121 | .filter(className => className.includes('xl')) 122 | .map(className => className.replace('xl:', '')) 123 | ... 124 | 125 | ``` 126 | 127 | ### tw 128 | With `exportClassNamesHelper` set, the package will generate and export a function `tw` 129 | which is just a typed wrapper of [classnames](https://github.com/JedWatson/classnames) package: 130 | 131 | ```ts 132 | type TailwindClassNamesFunction = ... 133 | 134 | export const tw: TailwindClassNamesFunction = require('classnames') 135 | ``` 136 | 137 | You can use it directly by importing the function from the generated file. 138 | 139 | For example: 140 | ```tsx 141 | import { tw } from './tailwind-types' 142 | 143 | const shouldBeRed = true / false //useState, computed or whatever... your logic here! 144 | const shouldBeBordered = true / false //useState, computed or whatever... your logic here! 145 | 146 | const btnClasses = tw( 147 | 'inline-flex', 'items-center', 148 | 'px-0.5', 'py-1.5', 149 | 'text-xs', 'leading-4', 'font-medium', 'rounded', 150 | 'hover:bg-indigo-50', 151 | shouldBeRed ? ['text-red-700', 'bg-red-100'] : ['text-indigo-700', 'bg-indigo-100'], 152 | { 'border': shouldBeBordered }, 153 | ) 154 | 155 | return 156 | ``` 157 | 158 | This is exactly the same syntax and features than [classNames](https://github.com/JedWatson/classnames) function here, 159 | but fully Tailwind typed. 160 | 161 | ### Tailwind Constants 162 | This one is a bit more special. 163 | With `exportConstants` set, the package will generate and export all the tailwind utilities as constants. 164 | 165 | ```ts 166 | export const twBgGray50 = 'bg-gray-50' as const 167 | export const twBgGray100 = 'bg-gray-100' as const 168 | export const twHoverFontBold = 'hover:font-bold' as const 169 | export const twH64 = 'h-64' as const 170 | ... 171 | ``` 172 | You can use it directly by importing the constants from the generated file. 173 | 174 | For example: 175 | ```tsx 176 | import { twText3Xl } from './tailwind-types' 177 | 178 | return

Foo !

179 | 180 | ``` 181 | 182 | You have to note that because constants in javascript follow a specific syntax, and some words are forbidden, some rules have to be applied: 183 | - constants are camelCased, 184 | - a `tw` prefix is added. (mainly because of `static` utility which is not allowed as const name and so becomes `twStatic`), 185 | - all the `:` and `-` characters are removed, 186 | - the `.` is replace by `Dot`: `w-3.5` becomes `twW3Dot5` 187 | - the `/` is replace by `On`: `w-3/5` becomes `twW3On5` 188 | 189 | 190 | ### Other? 191 | 192 | By the way the plugin is made, it is really easy to add generated content from the list of classes. 193 | New generators could be added the core, or be the subject of plugins if there are some needs. 194 | 195 | Example of generators: ReasonMl or flow typings, pure javascript constants, etc. 196 | 197 | **Please feel free to open an issue, so we can discuss that.** 198 | 199 | ## FAQ 200 | 201 | ### Will tailwind-ts be in my browser bundle? 202 | It's a big nope! 203 | The package is a nodejs tool, and is meant to be used only during development phase. 204 | 205 | The generated file however can be included in your bundle depending on what you do with it, 206 | so be attentive to your building process, and the size of your bundle. 207 | 208 | ### What are the dependencies of this package. 209 | 210 | The only needed dependency of this package is [ramda](https://ramdajs.com), a tool for data manipulation with 211 | functional programming flavor. Please check out of [the code](./src) of this package to understand why and how it is amazing. 212 | 213 | The package has also tailwindcss as a peerDependency, but it should not be a problem as it's actually a tool for Tailwind. 214 | 215 | You also will need [camelCase](https://github.com/sindresorhus/camelcase) if you want to export the constants, 216 | and [classnames](https://github.com/JedWatson/classnames) if you want to export the classNames wrapper. 217 | 218 | At the end, as said previously, this package will not be included in your bundle. 219 | You even can remove it after having generated the type if you want. 220 | 221 | ### Another question? 222 | 223 | Please feel free to [ask](https://github.com/mathieutu/tailwind-ts/issues/new)! 224 | 225 | 226 | ## License 227 | 228 | This package is an open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT). 229 | 230 | 231 | ## Contributing 232 | 233 | Issues and PRs are obviously welcomed and encouraged, both for bugs and new features as well as documentation. 234 | -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "license": "MIT", 4 | "dependencies": { 5 | "postcss-cli": "7.1.0", 6 | "tailwindcss": "1.2.0", 7 | "@tailwindcss/ui": "^0.1.3" 8 | }, 9 | "scripts": { 10 | "build": "postcss tailwind.css -o dist/tailwind.css", 11 | "build:lib": "cd .. && yarn build", 12 | "build:all": "yarn build:lib && postcss tailwind.css -o dist/tailwind.css" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /example/postcss.config.js: -------------------------------------------------------------------------------- 1 | /* eslint-disable global-require */ 2 | 3 | const purgecss = () => require('@fullhuman/postcss-purgecss')({ 4 | content: ['./src/**/*.tsx'], 5 | defaultExtractor: content => content.match(/[\w-/.:]+(? string 28 | export const tw: TailwindClassNamesFunction = require('classnames') 29 | ` 30 | 31 | const constsTemplate = ` 32 | /** Because of { exportConstants: true } configuration. */ 33 | {TAILWIND_CONSTS} 34 | ` 35 | 36 | const toConst = ({ prefix = '', separator = ':' }, value: string) => pipe( 37 | replace(prefix, ''), 38 | replace('/', '-on-'), 39 | replace('.', '-dot-'), 40 | ifElse( 41 | startsWith('-'), 42 | replace(/^/, 'neg-'), 43 | replace(`${separator}-`, '-neg-'), 44 | ), 45 | replace(/\W/g, '-'), 46 | replace(/^/, 'tw-'), 47 | require('camelcase'), 48 | )(value) 49 | 50 | export const getFile = (config, { 51 | exportClassesList, 52 | exportClassesChoice, 53 | exportClassNamesHelper, 54 | exportConstants, 55 | }) => classes => [ 56 | open, 57 | exportClassesList && ( 58 | classesTemplate.replace('{TAILWIND_CLASSES}', classes.map(className => ` '${className}',`).join('\n')) 59 | ), 60 | (exportClassesChoice || exportClassNamesHelper) && ( 61 | classTemplate.replace('{TAILWIND_CLASS}', classes.map(className => ` | '${className}'`).join('\n')) 62 | ), 63 | exportClassNamesHelper && ( 64 | classNamesTemplate 65 | ), 66 | exportConstants && ( 67 | constsTemplate.replace('{TAILWIND_CONSTS}', classes.map(className => `export const ${toConst(config, className)} = '${className}' as const`).join('\n')) 68 | ), 69 | ].filter(Boolean).join('\n') 70 | 71 | export const createFile = (path) => (source) => { 72 | unless(existsSync, mkdirSync, dirname(path)) 73 | 74 | writeFileSync(path, source) 75 | } 76 | -------------------------------------------------------------------------------- /src/plugin.ts: -------------------------------------------------------------------------------- 1 | import { getSource } from './source' 2 | import { fromPairs, keys, map, mergeLeft, pipe } from 'ramda' 3 | import { createFile } from './file' 4 | 5 | const defaultOptions = { 6 | path: 'tailwind-types.ts', 7 | exportClassesChoice: true, 8 | exportClassesList: false, 9 | exportClassNamesHelper: false, 10 | exportConstants: false, 11 | } 12 | 13 | let alreadyUsed = false 14 | 15 | type Options = Partial 16 | 17 | const getTailwindConfigObject = (configFunction) => pipe( 18 | keys, 19 | map(key => [key, configFunction(key)]), 20 | fromPairs, 21 | )(require('tailwindcss/defaultConfig')) 22 | 23 | const validateConfig = (options: Options) => { 24 | let hasError = false 25 | 26 | if (options.exportConstants) { 27 | try { 28 | require.resolve('camelcase') 29 | } catch (er) { 30 | hasError = true 31 | console.error('❌ "camelcase" package is required with { exportConstants: true } configuration.') 32 | } 33 | } 34 | 35 | if (options.exportClassNamesHelper) { 36 | try { 37 | require.resolve('classnames') 38 | } catch (er) { 39 | hasError = true 40 | console.error('❌ "classnames" package is required with { exportClassNamesHelper: true } configuration.') 41 | } 42 | } 43 | 44 | if (hasError) { 45 | console.log() 46 | process.exit(1) 47 | } 48 | } 49 | 50 | const generatorPlugin = (userOptions: Options = {}) => { 51 | const options = mergeLeft(userOptions, defaultOptions) 52 | 53 | validateConfig(options) 54 | 55 | return ({ config: configFunction }) => { 56 | if (alreadyUsed) { 57 | // we don't want to re-load this plugin when using it, or it will provoke an infinite loop. 58 | return 59 | } 60 | 61 | alreadyUsed = true 62 | 63 | getSource(getTailwindConfigObject(configFunction), options) 64 | .then(createFile(options.path)) 65 | .then(() => console.log(`✅ Tailwind types generated in ${options.path}.`)) 66 | } 67 | } 68 | 69 | generatorPlugin.__isOptionsFunction = true 70 | 71 | export = generatorPlugin 72 | -------------------------------------------------------------------------------- /src/selectors.ts: -------------------------------------------------------------------------------- 1 | import { Result, rule } from 'postcss' 2 | import { cond, flatten, map, pipe, prop, propEq } from 'ramda' 3 | 4 | 5 | const getSelectorsFromNode = cond([ 6 | [propEq('type', 'rule'), prop('selector')], 7 | [propEq('type', 'atrule'), root => getSelectorsFromRoot(root)], 8 | ]) 9 | 10 | 11 | const getSelectorsFromRoot = pipe( 12 | prop('nodes'), 13 | map(getSelectorsFromNode), 14 | flatten, 15 | ) 16 | 17 | export const getSelectors: (results: Required) => string[] = pipe( 18 | prop('root'), 19 | getSelectorsFromRoot, 20 | ) 21 | -------------------------------------------------------------------------------- /src/separator.ts: -------------------------------------------------------------------------------- 1 | import { assoc, map, replace } from 'ramda' 2 | 3 | /** 4 | * Because we need something easily replaceable in strings, 5 | * and that don't conflict with pseudo-selectors and css. 6 | */ 7 | const safeSeparator = '___' 8 | 9 | export const withSafeSeparator = assoc('separator', safeSeparator) 10 | 11 | export const restoreSeparator = ({ separator = ':' }) => ( 12 | map(replace(new RegExp(safeSeparator, 'g'), separator)) 13 | ) 14 | -------------------------------------------------------------------------------- /src/source.ts: -------------------------------------------------------------------------------- 1 | import tailwindcss from 'tailwindcss' 2 | 3 | import { restoreSeparator, withSafeSeparator } from './separator' 4 | import { getSelectors } from './selectors' 5 | import { getClasses } from './classes' 6 | import { getFile } from './file' 7 | 8 | export const getSource = (config, options) => ( 9 | tailwindcss(withSafeSeparator(config)) 10 | .process('@tailwind utilities;', { from: undefined }) 11 | .then(getSelectors) 12 | .then(getClasses) 13 | .then(restoreSeparator(config)) 14 | .then(getFile(config, options)) 15 | ) 16 | -------------------------------------------------------------------------------- /src/tailwindcss.d.ts: -------------------------------------------------------------------------------- 1 | declare module "tailwindcss" { 2 | const tailwindcss: (config: object) => import("postcss").Plugin; 3 | 4 | export = tailwindcss; 5 | } 6 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "es6", 4 | "module": "commonjs", 5 | "lib": ["esnext", "dom"], 6 | "declaration": true, 7 | "outDir": "./dist", 8 | "strict": false, 9 | "esModuleInterop": true 10 | }, 11 | "include": ["src"] 12 | } 13 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@types/color-name@^1.1.1": 6 | version "1.1.1" 7 | resolved "https://registry.yarnpkg.com/@types/color-name/-/color-name-1.1.1.tgz#1c1261bbeaa10a8055bbc5d8ab84b7b2afc846a0" 8 | integrity sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ== 9 | 10 | "@types/node@^13.11.1": 11 | version "13.11.1" 12 | resolved "https://registry.yarnpkg.com/@types/node/-/node-13.11.1.tgz#49a2a83df9d26daacead30d0ccc8762b128d53c7" 13 | integrity sha512-eWQGP3qtxwL8FGneRrC5DwrJLGN4/dH1clNTuLfN81HCrxVtxRjygDTUoZJ5ASlDEeo0ppYFQjQIlXhtXpOn6g== 14 | 15 | "@types/ramda@^0.27.3": 16 | version "0.27.3" 17 | resolved "https://registry.yarnpkg.com/@types/ramda/-/ramda-0.27.3.tgz#826355839c9da8c153a182f9697ddbe63c67f286" 18 | integrity sha512-fUUQsx88sJksuZXh6p11Bl4m1IHwXCez1mgIcbZ7Z4PvUdOqx8rGsqP1zDkixrnMPvupXXrwV1/1/vJEGjSehA== 19 | dependencies: 20 | ts-toolbelt "^6.3.3" 21 | 22 | acorn-node@^1.6.1: 23 | version "1.8.2" 24 | resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" 25 | integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== 26 | dependencies: 27 | acorn "^7.0.0" 28 | acorn-walk "^7.0.0" 29 | xtend "^4.0.2" 30 | 31 | acorn-walk@^7.0.0: 32 | version "7.1.1" 33 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.1.1.tgz#345f0dffad5c735e7373d2fec9a1023e6a44b83e" 34 | integrity sha512-wdlPY2tm/9XBr7QkKlq0WQVgiuGTX6YWPyRyBviSoScBuLfTVQhvwg6wJ369GJ/1nPfTLMfnrFIfjqVg6d+jQQ== 35 | 36 | acorn@^7.0.0: 37 | version "7.1.1" 38 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.1.tgz#e35668de0b402f359de515c5482a1ab9f89a69bf" 39 | integrity sha512-add7dgA5ppRPxCFJoAGfMDi7PIBXq1RtGo7BhbLaxwrXPOmw8gq48Y9ozT01hUKy9byMjlR20EJhu5zlkErEkg== 40 | 41 | ansi-styles@^3.2.1: 42 | version "3.2.1" 43 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 44 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 45 | dependencies: 46 | color-convert "^1.9.0" 47 | 48 | ansi-styles@^4.1.0: 49 | version "4.2.1" 50 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.2.1.tgz#90ae75c424d008d2624c5bf29ead3177ebfcf359" 51 | integrity sha512-9VGjrMsG1vePxcSweQsN20KY/c4zN0h9fLjqAbwbPfahM3t+NL+M9HC8xeXG2I8pX5NoamTGNuomEUFI7fcUjA== 52 | dependencies: 53 | "@types/color-name" "^1.1.1" 54 | color-convert "^2.0.1" 55 | 56 | autoprefixer@^9.4.5: 57 | version "9.7.6" 58 | resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.7.6.tgz#63ac5bbc0ce7934e6997207d5bb00d68fa8293a4" 59 | integrity sha512-F7cYpbN7uVVhACZTeeIeealwdGM6wMtfWARVLTy5xmKtgVdBNJvbDRoCK3YO1orcs7gv/KwYlb3iXwu9Ug9BkQ== 60 | dependencies: 61 | browserslist "^4.11.1" 62 | caniuse-lite "^1.0.30001039" 63 | chalk "^2.4.2" 64 | normalize-range "^0.1.2" 65 | num2fraction "^1.2.2" 66 | postcss "^7.0.27" 67 | postcss-value-parser "^4.0.3" 68 | 69 | balanced-match@^1.0.0: 70 | version "1.0.0" 71 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 72 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 73 | 74 | brace-expansion@^1.1.7: 75 | version "1.1.11" 76 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 77 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 78 | dependencies: 79 | balanced-match "^1.0.0" 80 | concat-map "0.0.1" 81 | 82 | browserslist@^4.11.1: 83 | version "4.11.1" 84 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.11.1.tgz#92f855ee88d6e050e7e7311d987992014f1a1f1b" 85 | integrity sha512-DCTr3kDrKEYNw6Jb9HFxVLQNaue8z+0ZfRBRjmCunKDEXEBajKDj2Y+Uelg+Pi29OnvaSGwjOsnRyNEkXzHg5g== 86 | dependencies: 87 | caniuse-lite "^1.0.30001038" 88 | electron-to-chromium "^1.3.390" 89 | node-releases "^1.1.53" 90 | pkg-up "^2.0.0" 91 | 92 | bytes@^3.0.0: 93 | version "3.1.0" 94 | resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" 95 | integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== 96 | 97 | camelcase-css@^2.0.1: 98 | version "2.0.1" 99 | resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" 100 | integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== 101 | 102 | camelcase@^6.0.0: 103 | version "6.0.0" 104 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.0.0.tgz#5259f7c30e35e278f1bdc2a4d91230b37cad981e" 105 | integrity sha512-8KMDF1Vz2gzOq54ONPJS65IvTUaB1cHJ2DMM7MbPmLZljDH1qpzzLsWdiN9pHh6qvkRVDTi/07+eNGch/oLU4w== 106 | 107 | caniuse-lite@^1.0.30001038, caniuse-lite@^1.0.30001039: 108 | version "1.0.30001041" 109 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001041.tgz#c2ea138dafc6fe03877921ddcddd4a02a14daf76" 110 | integrity sha512-fqDtRCApddNrQuBxBS7kEiSGdBsgO4wiVw4G/IClfqzfhW45MbTumfN4cuUJGTM0YGFNn97DCXPJ683PS6zwvA== 111 | 112 | chalk@^2.4.1, chalk@^2.4.2: 113 | version "2.4.2" 114 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 115 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 116 | dependencies: 117 | ansi-styles "^3.2.1" 118 | escape-string-regexp "^1.0.5" 119 | supports-color "^5.3.0" 120 | 121 | chalk@^3.0.0: 122 | version "3.0.0" 123 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" 124 | integrity sha512-4D3B6Wf41KOYRFdszmDqMCGq5VV/uMAB273JILmO+3jAlh8X4qDtdtgCR3fxtbLEMzSx22QdhnDcJvu2u1fVwg== 125 | dependencies: 126 | ansi-styles "^4.1.0" 127 | supports-color "^7.1.0" 128 | 129 | classnames@^2.2.6: 130 | version "2.2.6" 131 | resolved "https://registry.yarnpkg.com/classnames/-/classnames-2.2.6.tgz#43935bffdd291f326dad0a205309b38d00f650ce" 132 | integrity sha512-JR/iSQOSt+LQIWwrwEzJ9uk0xfN3mTVYMwt1Ir5mUcSN6pU+V4zQFFaJsclJbPuAUQH+yfWef6tm7l1quW3C8Q== 133 | 134 | color-convert@^1.9.0: 135 | version "1.9.3" 136 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 137 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 138 | dependencies: 139 | color-name "1.1.3" 140 | 141 | color-convert@^2.0.1: 142 | version "2.0.1" 143 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 144 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 145 | dependencies: 146 | color-name "~1.1.4" 147 | 148 | color-name@1.1.3: 149 | version "1.1.3" 150 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 151 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 152 | 153 | color-name@~1.1.4: 154 | version "1.1.4" 155 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 156 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 157 | 158 | concat-map@0.0.1: 159 | version "0.0.1" 160 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 161 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 162 | 163 | css-unit-converter@^1.1.1: 164 | version "1.1.1" 165 | resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.1.tgz#d9b9281adcfd8ced935bdbaba83786897f64e996" 166 | integrity sha1-2bkoGtz9jO2TW9urqDeGiX9k6ZY= 167 | 168 | cssesc@^3.0.0: 169 | version "3.0.0" 170 | resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" 171 | integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== 172 | 173 | defined@^1.0.0: 174 | version "1.0.0" 175 | resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" 176 | integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= 177 | 178 | detective@^5.2.0: 179 | version "5.2.0" 180 | resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" 181 | integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== 182 | dependencies: 183 | acorn-node "^1.6.1" 184 | defined "^1.0.0" 185 | minimist "^1.1.1" 186 | 187 | electron-to-chromium@^1.3.390: 188 | version "1.3.406" 189 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.406.tgz#d4b8f8c9f7405dddbbb646d6b15042cd7c1e6e61" 190 | integrity sha512-bx8vBZoEbhsMmwEZIj2twzfhFoKKZlSLQiENhqgc5/FdAj4/UHEzAri42OTSFA5+0agLR03ReTvIms2dfZ7/Ew== 191 | 192 | escape-string-regexp@^1.0.5: 193 | version "1.0.5" 194 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 195 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 196 | 197 | find-up@^2.1.0: 198 | version "2.1.0" 199 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-2.1.0.tgz#45d1b7e506c717ddd482775a2b77920a3c0c57a7" 200 | integrity sha1-RdG35QbHF93UgndaK3eSCjwMV6c= 201 | dependencies: 202 | locate-path "^2.0.0" 203 | 204 | fs-extra@^8.0.0: 205 | version "8.1.0" 206 | resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" 207 | integrity sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g== 208 | dependencies: 209 | graceful-fs "^4.2.0" 210 | jsonfile "^4.0.0" 211 | universalify "^0.1.0" 212 | 213 | fs.realpath@^1.0.0: 214 | version "1.0.0" 215 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 216 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 217 | 218 | glob@^7.1.2: 219 | version "7.1.6" 220 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 221 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 222 | dependencies: 223 | fs.realpath "^1.0.0" 224 | inflight "^1.0.4" 225 | inherits "2" 226 | minimatch "^3.0.4" 227 | once "^1.3.0" 228 | path-is-absolute "^1.0.0" 229 | 230 | graceful-fs@^4.1.6, graceful-fs@^4.2.0: 231 | version "4.2.3" 232 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.3.tgz#4a12ff1b60376ef09862c2093edd908328be8423" 233 | integrity sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ== 234 | 235 | has-flag@^3.0.0: 236 | version "3.0.0" 237 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 238 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 239 | 240 | has-flag@^4.0.0: 241 | version "4.0.0" 242 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 243 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 244 | 245 | indexes-of@^1.0.1: 246 | version "1.0.1" 247 | resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" 248 | integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= 249 | 250 | inflight@^1.0.4: 251 | version "1.0.6" 252 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 253 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 254 | dependencies: 255 | once "^1.3.0" 256 | wrappy "1" 257 | 258 | inherits@2: 259 | version "2.0.4" 260 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 261 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 262 | 263 | jsonfile@^4.0.0: 264 | version "4.0.0" 265 | resolved "https://registry.yarnpkg.com/jsonfile/-/jsonfile-4.0.0.tgz#8771aae0799b64076b76640fca058f9c10e33ecb" 266 | integrity sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss= 267 | optionalDependencies: 268 | graceful-fs "^4.1.6" 269 | 270 | locate-path@^2.0.0: 271 | version "2.0.0" 272 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-2.0.0.tgz#2b568b265eec944c6d9c0de9c3dbbbca0354cd8e" 273 | integrity sha1-K1aLJl7slExtnA3pw9u7ygNUzY4= 274 | dependencies: 275 | p-locate "^2.0.0" 276 | path-exists "^3.0.0" 277 | 278 | lodash.toarray@^4.4.0: 279 | version "4.4.0" 280 | resolved "https://registry.yarnpkg.com/lodash.toarray/-/lodash.toarray-4.4.0.tgz#24c4bfcd6b2fba38bfd0594db1179d8e9b656561" 281 | integrity sha1-JMS/zWsvuji/0FlNsRedjptlZWE= 282 | 283 | lodash@^4.17.15: 284 | version "4.17.15" 285 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" 286 | integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== 287 | 288 | minimatch@^3.0.4: 289 | version "3.0.4" 290 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 291 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 292 | dependencies: 293 | brace-expansion "^1.1.7" 294 | 295 | minimist@^1.1.1: 296 | version "1.2.5" 297 | resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" 298 | integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== 299 | 300 | node-emoji@^1.8.1: 301 | version "1.10.0" 302 | resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" 303 | integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== 304 | dependencies: 305 | lodash.toarray "^4.4.0" 306 | 307 | node-releases@^1.1.53: 308 | version "1.1.53" 309 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.53.tgz#2d821bfa499ed7c5dffc5e2f28c88e78a08ee3f4" 310 | integrity sha512-wp8zyQVwef2hpZ/dJH7SfSrIPD6YoJz6BDQDpGEkcA0s3LpAQoxBIYmfIq6QAhC1DhwsyCgTaTTcONwX8qzCuQ== 311 | 312 | normalize-range@^0.1.2: 313 | version "0.1.2" 314 | resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" 315 | integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= 316 | 317 | normalize.css@^8.0.1: 318 | version "8.0.1" 319 | resolved "https://registry.yarnpkg.com/normalize.css/-/normalize.css-8.0.1.tgz#9b98a208738b9cc2634caacbc42d131c97487bf3" 320 | integrity sha512-qizSNPO93t1YUuUhP22btGOo3chcvDFqFaj2TRybP0DMxkHOCTYwp3n34fel4a31ORXy4m1Xq0Gyqpb5m33qIg== 321 | 322 | num2fraction@^1.2.2: 323 | version "1.2.2" 324 | resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" 325 | integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= 326 | 327 | object-assign@^4.1.1: 328 | version "4.1.1" 329 | resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 330 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 331 | 332 | once@^1.3.0: 333 | version "1.4.0" 334 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 335 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 336 | dependencies: 337 | wrappy "1" 338 | 339 | p-limit@^1.1.0: 340 | version "1.3.0" 341 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" 342 | integrity sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q== 343 | dependencies: 344 | p-try "^1.0.0" 345 | 346 | p-locate@^2.0.0: 347 | version "2.0.0" 348 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43" 349 | integrity sha1-IKAQOyIqcMj9OcwuWAaA893l7EM= 350 | dependencies: 351 | p-limit "^1.1.0" 352 | 353 | p-try@^1.0.0: 354 | version "1.0.0" 355 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3" 356 | integrity sha1-y8ec26+P1CKOE/Yh8rGiN8GyB7M= 357 | 358 | path-exists@^3.0.0: 359 | version "3.0.0" 360 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515" 361 | integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU= 362 | 363 | path-is-absolute@^1.0.0: 364 | version "1.0.1" 365 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 366 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 367 | 368 | path-parse@^1.0.6: 369 | version "1.0.6" 370 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" 371 | integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== 372 | 373 | pkg-up@^2.0.0: 374 | version "2.0.0" 375 | resolved "https://registry.yarnpkg.com/pkg-up/-/pkg-up-2.0.0.tgz#c819ac728059a461cab1c3889a2be3c49a004d7f" 376 | integrity sha1-yBmscoBZpGHKscOImivjxJoATX8= 377 | dependencies: 378 | find-up "^2.1.0" 379 | 380 | postcss-functions@^3.0.0: 381 | version "3.0.0" 382 | resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" 383 | integrity sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4= 384 | dependencies: 385 | glob "^7.1.2" 386 | object-assign "^4.1.1" 387 | postcss "^6.0.9" 388 | postcss-value-parser "^3.3.0" 389 | 390 | postcss-js@^2.0.0: 391 | version "2.0.3" 392 | resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-2.0.3.tgz#a96f0f23ff3d08cec7dc5b11bf11c5f8077cdab9" 393 | integrity sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w== 394 | dependencies: 395 | camelcase-css "^2.0.1" 396 | postcss "^7.0.18" 397 | 398 | postcss-nested@^4.1.1: 399 | version "4.2.1" 400 | resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.1.tgz#4bc2e5b35e3b1e481ff81e23b700da7f82a8b248" 401 | integrity sha512-AMayXX8tS0HCp4O4lolp4ygj9wBn32DJWXvG6gCv+ZvJrEa00GUxJcJEEzMh87BIe6FrWdYkpR2cuyqHKrxmXw== 402 | dependencies: 403 | postcss "^7.0.21" 404 | postcss-selector-parser "^6.0.2" 405 | 406 | postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: 407 | version "6.0.2" 408 | resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.2.tgz#934cf799d016c83411859e09dcecade01286ec5c" 409 | integrity sha512-36P2QR59jDTOAiIkqEprfJDsoNrvwFei3eCqKd1Y0tUsBimsq39BLp7RD+JWny3WgB1zGhJX8XVePwm9k4wdBg== 410 | dependencies: 411 | cssesc "^3.0.0" 412 | indexes-of "^1.0.1" 413 | uniq "^1.0.1" 414 | 415 | postcss-value-parser@^3.3.0: 416 | version "3.3.1" 417 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" 418 | integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== 419 | 420 | postcss-value-parser@^4.0.3: 421 | version "4.0.3" 422 | resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.0.3.tgz#651ff4593aa9eda8d5d0d66593a2417aeaeb325d" 423 | integrity sha512-N7h4pG+Nnu5BEIzyeaaIYWs0LI5XC40OrRh5L60z0QjFsqGWcHcbkBvpe1WYpcIS9yQ8sOi/vIPt1ejQCrMVrg== 424 | 425 | postcss@^6.0.9: 426 | version "6.0.23" 427 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" 428 | integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== 429 | dependencies: 430 | chalk "^2.4.1" 431 | source-map "^0.6.1" 432 | supports-color "^5.4.0" 433 | 434 | postcss@^7.0.11, postcss@^7.0.18, postcss@^7.0.21, postcss@^7.0.27: 435 | version "7.0.27" 436 | resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.27.tgz#cc67cdc6b0daa375105b7c424a85567345fc54d9" 437 | integrity sha512-WuQETPMcW9Uf1/22HWUWP9lgsIC+KEHg2kozMflKjbeUtw9ujvFX6QmIfozaErDkmLWS9WEnEdEe6Uo9/BNTdQ== 438 | dependencies: 439 | chalk "^2.4.2" 440 | source-map "^0.6.1" 441 | supports-color "^6.1.0" 442 | 443 | pretty-hrtime@^1.0.3: 444 | version "1.0.3" 445 | resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" 446 | integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= 447 | 448 | ramda@^0.27.0: 449 | version "0.27.0" 450 | resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.27.0.tgz#915dc29865c0800bf3f69b8fd6c279898b59de43" 451 | integrity sha512-pVzZdDpWwWqEVVLshWUHjNwuVP7SfcmPraYuqocJp1yo2U1R7P+5QAfDhdItkuoGqIBnBYrtPp7rEPqDn9HlZA== 452 | 453 | reduce-css-calc@^2.1.6: 454 | version "2.1.7" 455 | resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.7.tgz#1ace2e02c286d78abcd01fd92bfe8097ab0602c2" 456 | integrity sha512-fDnlZ+AybAS3C7Q9xDq5y8A2z+lT63zLbynew/lur/IR24OQF5x98tfNwf79mzEdfywZ0a2wpM860FhFfMxZlA== 457 | dependencies: 458 | css-unit-converter "^1.1.1" 459 | postcss-value-parser "^3.3.0" 460 | 461 | resolve@^1.14.2: 462 | version "1.15.1" 463 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.15.1.tgz#27bdcdeffeaf2d6244b95bb0f9f4b4653451f3e8" 464 | integrity sha512-84oo6ZTtoTUpjgNEr5SJyzQhzL72gaRodsSfyxC/AXRvwu0Yse9H8eF9IpGo7b8YetZhlI6v7ZQ6bKBFV/6S7w== 465 | dependencies: 466 | path-parse "^1.0.6" 467 | 468 | source-map@^0.6.1: 469 | version "0.6.1" 470 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 471 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 472 | 473 | supports-color@^5.3.0, supports-color@^5.4.0: 474 | version "5.5.0" 475 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 476 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 477 | dependencies: 478 | has-flag "^3.0.0" 479 | 480 | supports-color@^6.1.0: 481 | version "6.1.0" 482 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-6.1.0.tgz#0764abc69c63d5ac842dd4867e8d025e880df8f3" 483 | integrity sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ== 484 | dependencies: 485 | has-flag "^3.0.0" 486 | 487 | supports-color@^7.1.0: 488 | version "7.1.0" 489 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.1.0.tgz#68e32591df73e25ad1c4b49108a2ec507962bfd1" 490 | integrity sha512-oRSIpR8pxT1Wr2FquTNnGet79b3BWljqOuoW/h4oBhxJ/HUbX5nX6JSruTkvXDCFMwDPvsaTTbvMLKZWSy0R5g== 491 | dependencies: 492 | has-flag "^4.0.0" 493 | 494 | tailwindcss@^1.2.0: 495 | version "1.2.0" 496 | resolved "https://registry.yarnpkg.com/tailwindcss/-/tailwindcss-1.2.0.tgz#5df317cebac4f3131f275d258a39da1ba3a0f291" 497 | integrity sha512-CKvY0ytB3ze5qvynG7qv4XSpQtFNGPbu9pUn8qFdkqgD8Yo/vGss8mhzbqls44YCXTl4G62p3qVZBj45qrd6FQ== 498 | dependencies: 499 | autoprefixer "^9.4.5" 500 | bytes "^3.0.0" 501 | chalk "^3.0.0" 502 | detective "^5.2.0" 503 | fs-extra "^8.0.0" 504 | lodash "^4.17.15" 505 | node-emoji "^1.8.1" 506 | normalize.css "^8.0.1" 507 | postcss "^7.0.11" 508 | postcss-functions "^3.0.0" 509 | postcss-js "^2.0.0" 510 | postcss-nested "^4.1.1" 511 | postcss-selector-parser "^6.0.0" 512 | pretty-hrtime "^1.0.3" 513 | reduce-css-calc "^2.1.6" 514 | resolve "^1.14.2" 515 | 516 | ts-toolbelt@^6.3.3: 517 | version "6.3.13" 518 | resolved "https://registry.yarnpkg.com/ts-toolbelt/-/ts-toolbelt-6.3.13.tgz#6e5bded5d064004a187abe9006dca69100517a01" 519 | integrity sha512-wC3SxZTo4bPsVaNOcg4GGI1t9kIvlDUE6qkdV5r1Mq2E046hX/EdS6m+l2MCzDy8qHALIZDmMRZcti6WKlLIhA== 520 | 521 | typescript@3.7.2: 522 | version "3.7.2" 523 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.2.tgz#27e489b95fa5909445e9fef5ee48d81697ad18fb" 524 | integrity sha512-ml7V7JfiN2Xwvcer+XAf2csGO1bPBdRbFCkYBczNZggrBZ9c7G3riSUeJmqEU5uOtXNPMhE3n+R4FA/3YOAWOQ== 525 | 526 | uniq@^1.0.1: 527 | version "1.0.1" 528 | resolved "https://registry.yarnpkg.com/uniq/-/uniq-1.0.1.tgz#b31c5ae8254844a3a8281541ce2b04b865a734ff" 529 | integrity sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8= 530 | 531 | universalify@^0.1.0: 532 | version "0.1.2" 533 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.1.2.tgz#b646f69be3942dabcecc9d6639c80dc105efaa66" 534 | integrity sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg== 535 | 536 | wrappy@1: 537 | version "1.0.2" 538 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 539 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 540 | 541 | xtend@^4.0.2: 542 | version "4.0.2" 543 | resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" 544 | integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== 545 | --------------------------------------------------------------------------------