├── .editorconfig ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── assets └── demo.gif ├── bin └── twind.js ├── package.json ├── src ├── __fixtures__ │ ├── clb.js │ ├── play.html │ ├── tailwind.config.js │ ├── test.html │ ├── test.jsx │ ├── test.svelte │ ├── test.vue │ └── twind.config.js ├── cli.ts ├── config.ts ├── extract.ts ├── index.ts ├── run.ts └── watch.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | # All files should use 5 | # - tabs unless specified otherwise 6 | # - unix-style newlines with a newline ending every file 7 | [*] 8 | indent_style = space 9 | indent_size = 2 10 | end_of_line = lf 11 | charset = utf-8 12 | trim_trailing_whitespace = true 13 | insert_final_newline = true 14 | 15 | [*.md] 16 | trim_trailing_whitespace = false 17 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Set default behavior to always use LF line endings 2 | * text=auto eol=lf 3 | 4 | # Denote all files that are truly binary and should not be modified. 5 | *.ico binary 6 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .build 2 | build 3 | node_modules 4 | web_modules 5 | .DS_Store 6 | 7 | .cache 8 | dist 9 | website 10 | __generated__ 11 | tsconfig.dist*.json 12 | 13 | benchmarks/*.min.mjs 14 | 15 | # Svelte Component type defs 16 | *.svelte.tsx 17 | __svelte-jsx.d.ts 18 | __svelte-shims.d.ts 19 | 20 | # Logs 21 | logs 22 | *.log 23 | npm-debug.log* 24 | yarn-debug.log* 25 | yarn-error.log* 26 | lerna-debug.log* 27 | 28 | # Diagnostic reports (https://nodejs.org/api/report.html) 29 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 30 | 31 | # Runtime data 32 | pids 33 | *.pid 34 | *.seed 35 | *.pid.lock 36 | 37 | # Directory for instrumented libs generated by jscoverage/JSCover 38 | lib-cov 39 | 40 | # Coverage directory used by tools like istanbul 41 | coverage/ 42 | *.lcov 43 | 44 | # nyc test coverage 45 | .nyc_output 46 | 47 | # Dependency directories 48 | node_modules/ 49 | jspm_packages/ 50 | 51 | # TypeScript v1 declaration files 52 | typings/ 53 | 54 | # TypeScript cache 55 | *.tsbuildinfo 56 | 57 | # Optional npm cache directory 58 | .npm 59 | 60 | # Optional eslint cache 61 | .eslintcache 62 | 63 | # Optional REPL history 64 | .node_repl_history 65 | 66 | # Output of 'npm pack' 67 | *.tgz 68 | 69 | # Yarn Integrity file 70 | .yarn-integrity 71 | demo 72 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 [these people](https://github.com/tw-in-js/twind-cli/graphs/contributors) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |
2 | 3 | # @twind/cli 4 | 5 | [![MIT License](https://flat.badgen.net/github/license/tw-in-js/twind-cli)](https://github.com/tw-in-js/twind-cli/blob/main/LICENSE) 6 | [![Latest Release](https://flat.badgen.net/npm/v/@twind/cli?icon=npm&label&cache=10800&color=blue)](https://www.npmjs.com/package/@twind/cli) 7 | [![Github](https://flat.badgen.net/badge/icon/tw-in-js%2Ftwind-cli?icon=github&label)](https://github.com/tw-in-js/twind-cli) 8 | [![Typescript](https://flat.badgen.net/badge/icon/included?icon=typescript&label)](https://unpkg.com/browse/@twind/cli/cli.d.ts) 9 | 10 | ![Twind Demo](https://raw.githubusercontent.com/tw-in-js/twind-cli/main/assets/demo.gif) 11 | 12 |
13 | 14 | ## Installation 15 | 16 | Install from npm: 17 | 18 | ```sh 19 | # Using npm 20 | npm install @twind/cli 21 | 22 | # Using Yarn 23 | yarn add @twind/cli 24 | ``` 25 | 26 | ## Usage 27 | 28 | ```bash 29 | # Find all htm,html,js,jsx,tsx,svelte,vue,mdx files and print generated CSS 30 | twind 31 | 32 | # Write CSS to a file 33 | twind -o public/styles.css 34 | 35 | # Use custom globs 36 | twind 'src/**/*.jsx' 'public/**/*.html' 37 | 38 | # Watch mode 39 | twind -w 40 | 41 | # Generate beautified css file 42 | twind -b 43 | 44 | # Use different twind config (ts, esm, or cjs) 45 | twind -c src/twind.config.js 46 | 47 | # Use different tailwind config (ts, esm, or cjs) 48 | twind -c tailwind.prod.js 49 | ``` 50 | 51 | ``` 52 | Usage 53 | $ twind [...globs=**/*.{htm,html,js,jsx,tsx,svelte,vue,mdx}] [options] 54 | 55 | Options 56 | -o, --output Set output css file path (default print to console) 57 | -c, --config Set config file path (default twind.config.[cm]js or tailwind.config.[cm]js 58 | -i, --ignore Any file patterns to ignore 59 | -I, --ignore-file gitignore like file (default .gitignore) 60 | -b, --beautify Generate beautified css file (default false) 61 | -C, --cwd The current directory to resolve from (default .) 62 | -w, --watch Watch for changes (default false) 63 | --color Print colorized output - to disable use --no-color (default true) 64 | -v, --version Displays current version 65 | -h, --help Displays this message 66 | ``` 67 | 68 | ## Limitations 69 | 70 | @twind/cli is a utility that can greatly help in some cases, however in practice it can also: 71 | 72 | - the grouping feature is currently **not** supported 73 | - yield "false positives" (i.e. detect TailwindCSS classes / selectors that are not actually used, due to broad string-based / regular expression search) 74 | - give false impressions (e.g. class names generated by Twind at runtime via `css()`, `apply()` and `style()` cannot possibly be computed via static code analysis, so the CLI-generated stylesheet is likely incomplete in most realistic use-cases). 75 | 76 | Please see [issue #1](https://github.com/tw-in-js/twind-cli/issues/1) for more details. 77 | 78 | ## License 79 | 80 | [MIT](https://github.com/tw-in-js/cli/blob/main/LICENSE) 81 | -------------------------------------------------------------------------------- /assets/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tw-in-js/twind-cli/9490c847e65aa3867acd29c81d1590bd2385e0cc/assets/demo.gif -------------------------------------------------------------------------------- /bin/twind.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('v8-compile-cache') 3 | 4 | require('..').cli() 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@twind/cli", 3 | "version": "0.2.1", 4 | "description": "Twind CLI", 5 | "// mark as private to prevent accidental publish - use 'yarn release'": "", 6 | "private": true, 7 | "keywords": [ 8 | "twind", 9 | "extension", 10 | "twind-extension", 11 | "plugin", 12 | "twind-plugin", 13 | "tailwind", 14 | "tw-in-js", 15 | "tailwind-in-js" 16 | ], 17 | "bugs": "https://github.com/tw-in-js/twind-cli/issues", 18 | "repository": "github:tw-in-js/twind-cli", 19 | "license": "MIT", 20 | "contributors": [ 21 | "Sascha Tandel (https://github.com/sastan)" 22 | ], 23 | "engines": { 24 | "node": ">=10.13" 25 | }, 26 | "files": [ 27 | "bin" 28 | ], 29 | "bin": { 30 | "twind": "bin/twind.js" 31 | }, 32 | "browser": false, 33 | "sideEffects": false, 34 | "// The 'module', 'unpkg' and 'types' fields are added by distilt": "", 35 | "main": "./src/index.ts", 36 | "// Each entry is expanded into several bundles (module, script, types, require, node, and default)": "", 37 | "exports": { 38 | ".": "./src/index.ts", 39 | "./package.json": "./package.json" 40 | }, 41 | "dependencies": { 42 | "chokidar": "^3.5.1", 43 | "esbuild": "^0.9.6", 44 | "find-up": "^5.0.0", 45 | "ignore": "^5.1.8", 46 | "kleur": "^4.1.4", 47 | "locate-path": "^6.0.0", 48 | "p-debounce": "^2.1.0", 49 | "p-event": "^4.2.0", 50 | "sade": "^1.7.4", 51 | "sucrase": "^3.17.1", 52 | "supports-color": "^8.1.1", 53 | "time-span": "^4.0.0", 54 | "twind": "^0.16.9", 55 | "v8-compile-cache": "^2.2.0" 56 | }, 57 | "peerDependencies": { 58 | "typescript": "^4.1.0" 59 | }, 60 | "peerDependenciesMeta": { 61 | "typescript": { 62 | "optional": true 63 | } 64 | }, 65 | "devDependencies": { 66 | "@types/clean-css": "^4.2.3", 67 | "@types/node": "^14.14.31", 68 | "@types/sade": "^1.7.2", 69 | "@types/supports-color": "^7.2.0", 70 | "c8": "^7.3.5", 71 | "distilt": "^0.10.4", 72 | "esbuild-register": "^2.3.0", 73 | "esm": "^3.2.25", 74 | "prettier": "^2.0.5", 75 | "typescript": "^4.1.3", 76 | "uvu": "^0.5.1", 77 | "watchlist": "^0.2.3" 78 | }, 79 | "scripts": { 80 | "build": "distilt", 81 | "format": "prettier --write --ignore-path .gitignore .", 82 | "release": "npx np --contents dist", 83 | "ts": "node -r esbuild-register -r esm", 84 | "test": "uvu -r esm -r esbuild-register . test.ts", 85 | "test:coverage": "c8 --src index.ts --all -r lcov -r text yarn test", 86 | "test:watch": "watchlist . -- yarn test", 87 | "version": "yarn build" 88 | }, 89 | "prettier": { 90 | "printWidth": 100, 91 | "semi": false, 92 | "singleQuote": true, 93 | "trailingComma": "all", 94 | "bracketSpacing": true 95 | }, 96 | "publishConfig": { 97 | "access": "public" 98 | } 99 | } 100 | -------------------------------------------------------------------------------- /src/__fixtures__/clb.js: -------------------------------------------------------------------------------- 1 | const clb = require('clb') 2 | 3 | const buttonBuilder = clb({ 4 | base: 'font-serif rounded-2xl', 5 | defaults: { 6 | color: 'gray', 7 | }, 8 | variants: { 9 | color: { 10 | gray: (props) => ({ 11 | 'text-gray-800 bg-gray-800': !props.disabled, 12 | 'text-gray-400 bg-gray-200': props.disabled, 13 | }), 14 | red: (props) => ({ 15 | 'text-red-800 bg-red-800': !props.disabled, 16 | 'text-red-400 bg-red-200': props.disabled, 17 | }), 18 | }, 19 | disabled: { 20 | true: 'cursor-not-allowed', 21 | }, 22 | }, 23 | }) 24 | 25 | buttonBuilder() 26 | -------------------------------------------------------------------------------- /src/__fixtures__/play.html: -------------------------------------------------------------------------------- 1 |
2 |
3 |
6 |
7 |
8 |
9 | 10 |
11 |
12 |
13 |

14 | An advanced online playground for Tailwind CSS, including support for things like: 15 |

16 |
    17 |
  • 18 | 19 | 24 | 29 | 30 | 31 |

    32 | Customizing your 33 | tailwind.config.js file 34 |

    35 |
  • 36 |
  • 37 | 38 | 43 | 48 | 49 | 50 |

    51 | Extracting classes with 52 | @apply 53 |

    54 |
  • 55 |
  • 56 | 57 | 62 | 67 | 68 | 69 |

    Code completion with instant preview

    70 |
  • 71 |
72 |

73 | Perfect for learning how the framework works, prototyping a new idea, or creating a 74 | demo to share online. 75 |

76 |
77 |
78 |

Want to dig deeper into Tailwind?

79 |

80 | 81 | Read the docs → 82 | 83 |

84 |
85 |
86 |
87 |
88 |
89 |
90 | -------------------------------------------------------------------------------- /src/__fixtures__/tailwind.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | purge: ['./src/**/*.html'], 3 | darkMode: false, // or 'media' or 'class' 4 | theme: { 5 | extend: {}, 6 | }, 7 | variants: { 8 | extend: {}, 9 | }, 10 | plugins: [], 11 | } 12 | -------------------------------------------------------------------------------- /src/__fixtures__/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Twind 7 | 8 | 9 |

10 | Hello World" 11 |

12 | 13 | 14 | -------------------------------------------------------------------------------- /src/__fixtures__/test.jsx: -------------------------------------------------------------------------------- 1 | export default function App() { 2 | return ( 3 |
4 | {/* Delete the two lines below */} 5 |

sm:top-[15px]`} 7 | > 8 | This is a starter template for you! 9 |

10 |

11 | All the best with your React + Tailwind project! 😃 12 |

13 | 19 | Read Documentation for this Template 20 | 21 |
22 | ) 23 | } 24 | -------------------------------------------------------------------------------- /src/__fixtures__/test.svelte: -------------------------------------------------------------------------------- 1 |
x-y-
2 | -------------------------------------------------------------------------------- /src/__fixtures__/test.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 17 | -------------------------------------------------------------------------------- /src/__fixtures__/twind.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import("twind").Configuration } */ 2 | module.exports = { 3 | preflight: false, 4 | theme: { 5 | extend: { 6 | colors: {}, 7 | }, 8 | }, 9 | } 10 | -------------------------------------------------------------------------------- /src/cli.ts: -------------------------------------------------------------------------------- 1 | import { version } from '../package.json' 2 | import sade from 'sade' 3 | import { run } from './run' 4 | import supportsColor from 'supports-color' 5 | 6 | export const cli = (argv = process.argv) => 7 | sade('twind [...globs=**/*.{htm,html,js,jsx,tsx,svelte,vue,mdx}]', /* single commmand */ true) 8 | .version(version) 9 | .option('-o, --output', 'Set output css file path (default print to console)') 10 | .option( 11 | '-c, --config', 12 | 'Set config file path (default twind.config.{[cm]js,ts} or tailwind.config.{[cm]js,ts})', 13 | ) 14 | .option('-i, --ignore', 'Any file patterns to ignore') 15 | .option('-I, --ignore-file', 'gitignore like file', '.gitignore') 16 | .option('-b, --beautify', 'Generate beautified css file', false) 17 | .option('-C, --cwd', 'The current directory to resolve from', '.') 18 | .option('-w, --watch', 'Watch for changes', false) 19 | .option('--color', 'Print colorized output - to disable use --no-color', !!supportsColor.stderr) 20 | .action(async (globs, { _, ['ignore-file']: ignoreFile, ...options }) => { 21 | try { 22 | await run([globs, ..._], { ...options, ignoreFile }) 23 | } catch (error) { 24 | console.error(error.stack || error.message) 25 | process.exit(1) 26 | } 27 | }) 28 | .parse(argv) 29 | -------------------------------------------------------------------------------- /src/config.ts: -------------------------------------------------------------------------------- 1 | import * as Path from 'path' 2 | import Module from 'module' 3 | import { fileURLToPath } from 'url' 4 | 5 | import type { Configuration } from 'twind' 6 | import locatePath from 'locate-path' 7 | import kleur from 'kleur' 8 | 9 | const TWIND_CONFIG_FILES = [ 10 | 'twind.config.ts', 11 | 'twind.config.mjs', 12 | 'twind.config.js', 13 | 'twind.config.cjs', 14 | ] 15 | 16 | const TAILWIND_CONFIG_FILES = [ 17 | 'tailwind.config.ts', 18 | 'tailwind.config.mjs', 19 | 'tailwind.config.js', 20 | 'tailwind.config.cjs', 21 | ] 22 | 23 | export const findConfig = async (cwd = process.cwd()): Promise => { 24 | return locatePath( 25 | [ 26 | ...TWIND_CONFIG_FILES, 27 | ...TWIND_CONFIG_FILES.map((file) => Path.join('config', file)), 28 | ...TWIND_CONFIG_FILES.map((file) => Path.join('src', file)), 29 | ...TWIND_CONFIG_FILES.map((file) => Path.join('public', file)), 30 | ...TAILWIND_CONFIG_FILES, 31 | ].map((file) => Path.resolve(cwd, file)), 32 | ) 33 | } 34 | 35 | export const loadFile = (file: string, cwd = process.cwd()): T => { 36 | const moduleId = Path.resolve(cwd, file) 37 | 38 | try { 39 | const require = Module.createRequire?.(moduleId) || Module.createRequireFromPath(moduleId) 40 | 41 | require('sucrase/register') 42 | 43 | delete require.cache[moduleId] 44 | 45 | // eslint-disable-next-line @typescript-eslint/no-var-requires 46 | return require(moduleId) as T 47 | } catch (error) { 48 | console.error( 49 | kleur.red( 50 | `Failed to to load ${kleur.bold(Path.relative(process.cwd(), moduleId))}: ${error.message}`, 51 | ), 52 | ) 53 | 54 | return {} as T 55 | } 56 | } 57 | 58 | export type TConfiguration = Configuration & { purge?: string[] | { content?: string[] } } 59 | 60 | export const loadConfig = (configFile: string, cwd = process.cwd()): TConfiguration => { 61 | const exports = loadFile<{ default: Configuration } & Configuration>(configFile, cwd) 62 | 63 | const config = exports.default || exports || {} 64 | 65 | // could be tailwind config 66 | if ( 67 | (Array.isArray(config.plugins) || 68 | // Twind has variants as {key: string}; Tailwind array or object 69 | Object.values(config.variants || {}).some((value) => typeof value == 'object') || 70 | typeof config.prefix == 'string', 71 | 'presets' in config || 72 | 'separator' in config || 73 | 'variantOrder' in config || 74 | 'corePlugins' in config || 75 | 'purge' in config) 76 | ) { 77 | console.error( 78 | kleur.red( 79 | `${kleur.bold( 80 | Path.relative(process.cwd(), configFile), 81 | )} is a tailwindcss configuration file – ${kleur.bold( 82 | 'only', 83 | )} the theme, darkMode, purge files are used`, 84 | ), 85 | ) 86 | 87 | return { 88 | theme: config.theme, 89 | darkMode: config.darkMode, 90 | purge: (config as any).purge, 91 | } 92 | } 93 | 94 | return config 95 | } 96 | 97 | export const getConfig = async ( 98 | cwd = process.cwd(), 99 | configFile?: string, 100 | ): Promise => { 101 | configFile ??= await findConfig(cwd) 102 | 103 | return { 104 | ...(configFile ? loadConfig(Path.resolve(cwd, configFile), cwd) : {}), 105 | configFile, 106 | } 107 | } 108 | -------------------------------------------------------------------------------- /src/extract.ts: -------------------------------------------------------------------------------- 1 | import { match } from 'assert' 2 | import { readFile } from 'fs/promises' 3 | 4 | const cleanCandidate = (candidate: string): string => { 5 | // 1. remove leading class: (svelte) 6 | return candidate.replace(/^class:/, '') 7 | } 8 | 9 | const COMMON_INVALID_CANDIDATES = new Set([ 10 | '!DOCTYPE', 11 | 'true', 12 | 'false', 13 | 'null', 14 | 'undefined', 15 | 'class', 16 | 'className', 17 | 'currentColor', 18 | ]) 19 | 20 | const removeInvalidCandidate = (candidate: string): boolean => { 21 | return !( 22 | COMMON_INVALID_CANDIDATES.has(candidate) || 23 | // Remove candiate if it matches the following rules 24 | // - no lower case char 25 | !/[a-z]/.test(candidate) || 26 | // - Starts with an uppercase char 27 | // - ending with -, /, @, $, & 28 | // - white space only 29 | /^[A-Z]|[-/@$&]$|^\s*$/.test(candidate) || 30 | // Either of the following two must match 31 | // support @sm:..., >sm:..., [][^:]+:/.test(candidate) != 33 | // - starts with <:#.,;?\d\]%/$&@_ 34 | // - v-*: (vue) 35 | // - aria-* 36 | // - url like 37 | /^-?[<:#.,;?\d[\]%/$&@_]|^v-[^:]+:|^aria-|^https?:\/\/|^mailto:|^tel:/.test(candidate) 38 | ) 39 | } 40 | 41 | export const extractRulesFromString = (content: string): string[] => { 42 | return ( 43 | content.match(/(?:\[[^[]+]:|[^>"'`\s(){}\]=])[^<>"'`\s()[]*(?:\[[^[]+]|[^<>"'`\s(){}=:.,])/g) || 44 | [] 45 | ) 46 | .map(cleanCandidate) 47 | .filter(removeInvalidCandidate) 48 | } 49 | 50 | export const extractRulesFromFile = async (file: string): Promise => { 51 | try { 52 | return extractRulesFromString(await readFile(file, { encoding: 'utf-8' })) 53 | } catch (error) { 54 | // TODO log error 55 | return [] 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export * from './cli' 2 | export * from './run' 3 | -------------------------------------------------------------------------------- /src/run.ts: -------------------------------------------------------------------------------- 1 | import type { Stats } from 'fs' 2 | import fs from 'fs/promises' 3 | import path from 'path' 4 | 5 | import kleur from 'kleur' 6 | import timeSpan from 'time-span' 7 | import { transform } from 'esbuild' 8 | 9 | import type { TW, Configuration, Mode } from 'twind' 10 | import type { VirtualSheet } from 'twind/sheets' 11 | import { create } from 'twind' 12 | import { virtualSheet } from 'twind/sheets' 13 | 14 | import { watch } from './watch' 15 | import { extractRulesFromFile } from './extract' 16 | import { findConfig, loadConfig as tryLoadConfig } from './config' 17 | 18 | export interface RunOptions { 19 | config?: string 20 | output?: string 21 | cwd?: string 22 | color?: boolean 23 | watch?: boolean 24 | ignoreFile?: string 25 | beautify?: boolean 26 | } 27 | 28 | export const run = async (globs: string[], options: RunOptions = {}): Promise => { 29 | kleur.enabled = !!options.color 30 | 31 | options.cwd = path.resolve(options.cwd || '.') 32 | 33 | const configFile = 34 | (options.config && path.resolve(options.cwd, options.config)) || (await findConfig(options.cwd)) 35 | 36 | // Track unknown rules 37 | const unknownRules = new Set() 38 | const ignoreUnknownRules = (rule: string) => !unknownRules.has(rule) 39 | const mode: Mode = { 40 | unknown() {}, 41 | report(info) { 42 | if (info.id == 'UNKNOWN_DIRECTIVE') { 43 | unknownRules.add(info.rule) 44 | } 45 | }, 46 | } 47 | 48 | const watched = new Map() 49 | const candidatesByFile = new Map() 50 | let lastCandidates = new Set(['' /* ensure an empty CSS may be generated */]) 51 | 52 | // The initial run is not counted -> -1, initialRun=0, first run=1 53 | let runCount = -1 54 | 55 | const loadConfig = (): { sheet: VirtualSheet; tw: TW } => { 56 | let config: Configuration & { purge?: string[] | { content?: string[] } } = {} 57 | 58 | if (configFile) { 59 | const configEndTime = timeSpan() 60 | 61 | config = tryLoadConfig(configFile, options.cwd) 62 | 63 | console.error( 64 | kleur.green( 65 | `Loaded configuration from ${kleur.bold( 66 | path.relative(process.cwd(), configFile), 67 | )} in ${kleur.bold(configEndTime.rounded() + ' ms')}`, 68 | ), 69 | ) 70 | 71 | if (runCount < 1 && config.purge) { 72 | if (Array.isArray(config.purge)) { 73 | globs = [...globs, ...config.purge] 74 | } else if (Array.isArray(config.purge.content)) { 75 | globs = [...globs, ...config.purge.content] 76 | } 77 | } 78 | } 79 | 80 | unknownRules.clear() 81 | lastCandidates = new Set(['' /* ensure an empty CSS may be generated */]) 82 | 83 | const sheet = virtualSheet() 84 | 85 | return { 86 | sheet, 87 | tw: create({ ...config, sheet, mode, hash: false }).tw, 88 | } 89 | } 90 | 91 | let { sheet, tw } = await loadConfig() 92 | 93 | const outputFile = options.output && path.resolve(options.cwd, options.output) 94 | 95 | globs = globs.filter(Boolean) 96 | if (!globs.length) { 97 | globs.push('**/*.{htm,html,js,jsx,tsx,svelte,vue,mdx}') 98 | } 99 | 100 | console.error( 101 | kleur.dim(`Using the following patterns: ${kleur.bold(JSON.stringify(globs).slice(1, -1))}`), 102 | ) 103 | 104 | for await (const changes of watch(configFile ? [configFile, ...globs] : globs, options)) { 105 | runCount++ 106 | // console.error([...changes.keys()]) 107 | console.error( 108 | kleur.cyan( 109 | `Processing ${kleur.bold(changes.size)}${options.watch ? ' changed' : ''} file${ 110 | changes.size == 1 ? '' : 's' 111 | }`, 112 | ), 113 | ) 114 | 115 | const endTime = timeSpan() 116 | const pendingDetections: Promise[] = [] 117 | let hasChanged = false 118 | for (const [file, stats] of changes.entries()) { 119 | if (file == configFile) { 120 | if (runCount) { 121 | ;({ sheet, tw } = await loadConfig()) 122 | hasChanged = true 123 | } 124 | } else if (stats) { 125 | const watchedStats = watched.get(file) 126 | if ( 127 | !watchedStats || 128 | watchedStats.size !== stats.size || 129 | watchedStats.mtimeMs !== stats.mtimeMs || 130 | watchedStats.ino !== stats.ino 131 | ) { 132 | pendingDetections.push( 133 | extractRulesFromFile(file).then((candidates) => { 134 | // console.error({file, candidates}) 135 | watched.set(file, stats) 136 | candidatesByFile.set(file, candidates) 137 | if (!hasChanged) { 138 | for (let index = candidates.length; index--; ) { 139 | if (!lastCandidates.has(candidates[index])) { 140 | hasChanged = true 141 | break 142 | } 143 | } 144 | } 145 | }), 146 | ) 147 | } 148 | } else { 149 | watched.delete(file) 150 | candidatesByFile.delete(file) 151 | hasChanged = true 152 | } 153 | } 154 | 155 | await Promise.all(pendingDetections) 156 | 157 | const nextCandidates = new Set() 158 | const addCandidate = (candidate: string): void => { 159 | nextCandidates.add(candidate) 160 | } 161 | candidatesByFile.forEach((candidates) => { 162 | candidates.forEach(addCandidate) 163 | }) 164 | 165 | console.error( 166 | kleur.gray( 167 | `Extracted ${kleur.bold(nextCandidates.size)} candidate${ 168 | nextCandidates.size == 1 ? '' : 's' 169 | } from ${watched.size} file${watched.size == 1 ? '' : 's'} in ${kleur.bold( 170 | endTime.rounded() + ' ms', 171 | )}`, 172 | ), 173 | ) 174 | 175 | if (hasChanged || !equals(lastCandidates, nextCandidates)) { 176 | const twEndTime = timeSpan() 177 | sheet.reset() 178 | tw([...nextCandidates].filter(ignoreUnknownRules).sort().join(' ')) 179 | // console.error([...nextCandidates].sort().join(' ')) 180 | console.error( 181 | kleur.gray( 182 | `Generated ${kleur.bold(sheet.target.length)} CSS rule${ 183 | sheet.target.length == 1 ? '' : 's' 184 | } in ${kleur.bold(twEndTime.rounded() + ' ms')}`, 185 | ), 186 | ) 187 | 188 | lastCandidates = nextCandidates 189 | 190 | // Beautify or Minify 191 | let css = sheet.target.join('\n') 192 | if (options.beautify || !options.watch) { 193 | const cssEndTime = timeSpan() 194 | const result = await transform(css, { 195 | minify: !options.beautify, 196 | loader: 'css', 197 | sourcemap: false, 198 | }) 199 | 200 | css = result.code 201 | console.error( 202 | kleur.gray( 203 | `${options.beautify ? 'Beautified' : 'Minimized'} CSS in ${kleur.bold( 204 | cssEndTime.rounded() + ' ms', 205 | )}`, 206 | ), 207 | ) 208 | } 209 | 210 | // Write to file or console 211 | if (outputFile) { 212 | await fs.mkdir(path.dirname(outputFile), { recursive: true }) 213 | await fs.writeFile(outputFile, css) 214 | console.error( 215 | kleur.green( 216 | `Finished ${kleur.bold(path.relative(process.cwd(), outputFile))} in ${kleur.bold( 217 | endTime.rounded() + ' ms', 218 | )}`, 219 | ), 220 | ) 221 | } else { 222 | console.error(kleur.green(`Finished in ${kleur.bold(endTime.rounded() + ' ms')}`)) 223 | console.log(css) 224 | } 225 | } else { 226 | console.error(kleur.green().dim(`No new classes detected - skipped generating CSS`)) 227 | } 228 | 229 | if (options.watch) { 230 | console.error('\n' + kleur.dim('Waiting for file changes...')) 231 | } 232 | } 233 | 234 | if (runCount < 0) { 235 | console.error(kleur.yellow(`No matching files found...`)) 236 | } 237 | } 238 | 239 | function equals(a: Set, b: Set) { 240 | return a.size === b.size && every(b, (value: unknown) => a.has(value)) 241 | } 242 | 243 | function every(as: Iterable, predicate: (value: T) => unknown): boolean { 244 | for (const a of as) { 245 | if (!predicate(a)) { 246 | return false 247 | } 248 | } 249 | 250 | return true 251 | } 252 | -------------------------------------------------------------------------------- /src/watch.ts: -------------------------------------------------------------------------------- 1 | import fs from 'fs' 2 | import path from 'path' 3 | import chokidar from 'chokidar' 4 | import ignore from 'ignore' 5 | import pEvent from 'p-event' 6 | import pDebounce from 'p-debounce' 7 | import findUp from 'find-up' 8 | 9 | export type WatchResult = Map 10 | 11 | const readIgnoreFile = (file: string, cwd: string): string => { 12 | try { 13 | const path = findUp.sync(file, { cwd }) 14 | return path ? fs.readFileSync(path, { encoding: 'utf-8' }) : '' 15 | } catch { 16 | return '' 17 | } 18 | } 19 | export function watch( 20 | globs: string[], 21 | { cwd = '.', watch, ignoreFile }: { cwd?: string; watch?: boolean; ignoreFile?: string }, 22 | ): AsyncIterableIterator { 23 | cwd = path.resolve(cwd) 24 | 25 | const isNotIgnored = ignore() 26 | .add(ignoreFile ? readIgnoreFile(ignoreFile, cwd) : '') 27 | .add(['**/.git*/**', '**/node_modules/**']) 28 | .createFilter() 29 | 30 | const watcher = chokidar.watch(globs, { 31 | cwd, 32 | ignored: (file: string) => { 33 | if (path.isAbsolute(file)) { 34 | file = path.relative(cwd, file) 35 | } 36 | return file ? !isNotIgnored(file) : false 37 | }, 38 | persistent: !!watch, 39 | ignoreInitial: false, 40 | alwaysStat: true, 41 | followSymlinks: true, 42 | awaitWriteFinish: { 43 | stabilityThreshold: 120, 44 | pollInterval: 20, 45 | }, 46 | }) 47 | 48 | let changed: WatchResult = new Map() 49 | let isDone = false 50 | 51 | const nextQueue: { 52 | resolve: (x: IteratorResult) => void 53 | reject: (error: any) => void 54 | }[] = [] 55 | 56 | let onReady: Promise | null = pEvent(watcher, 'ready').then(async () => { 57 | if (!watch) { 58 | isDone = true 59 | return watcher.close() 60 | } 61 | }) 62 | 63 | const notify = pDebounce(() => { 64 | if (isDone || changed.size) { 65 | const next = nextQueue.shift() 66 | 67 | if (next) { 68 | next.resolve( 69 | isDone && !changed.size 70 | ? { done: true, value: undefined } 71 | : { done: false, value: changed }, 72 | ) 73 | changed = new Map() 74 | } 75 | } 76 | }, 50) 77 | 78 | let pendingError: any 79 | 80 | watcher 81 | .on('error', (error) => { 82 | const next = nextQueue.shift() 83 | if (next) { 84 | next.reject(error) 85 | } else { 86 | pendingError = error 87 | } 88 | }) 89 | .on('add', (file, stats) => { 90 | changed.set(path.resolve(cwd, file), stats) 91 | notify() 92 | }) 93 | .on('change', (file, stats) => { 94 | changed.set(path.resolve(cwd, file), stats) 95 | notify() 96 | }) 97 | .on('unlink', (file) => { 98 | changed.set(path.resolve(cwd, file), undefined) 99 | notify() 100 | }) 101 | 102 | return { 103 | [Symbol.asyncIterator]() { 104 | return this 105 | }, 106 | async next() { 107 | if (pendingError) { 108 | throw pendingError 109 | } 110 | 111 | if (onReady) { 112 | await onReady 113 | onReady = null 114 | } 115 | 116 | return new Promise((resolve, reject) => { 117 | nextQueue.push({ resolve, reject }) 118 | notify() 119 | }) 120 | }, 121 | async return(value) { 122 | isDone = true 123 | await watcher.close() 124 | return { done: true, value } 125 | }, 126 | async throw(error) { 127 | isDone = true 128 | await watcher.close() 129 | throw error 130 | }, 131 | } 132 | } 133 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "$schema": "http://json.schemastore.org/tsconfig", 3 | "include": ["src", "package.json"], 4 | "compilerOptions": { 5 | // During development for Node v10.8 support 6 | "target": "es2018", 7 | "module": "ESNext", 8 | "lib": ["esnext", "dom", "dom.iterable"], 9 | // ensure that nobody can accidentally use this config for a build 10 | "noEmit": true, 11 | "declaration": true, 12 | "declarationMap": true, 13 | "noEmitOnError": true, 14 | "noErrorTruncation": true, 15 | // Enforce using `import type` instead of `import` for Types 16 | "importsNotUsedAsValues": "error", 17 | "allowJs": true, 18 | // Generate inline sourcemaps 19 | "sourceMap": false, 20 | "inlineSourceMap": true, 21 | "inlineSources": true, 22 | // Search under node_modules for non-relative imports. 23 | "moduleResolution": "node", 24 | // Enable strictest settings like strictNullChecks & noImplicitAny. 25 | "strict": true, 26 | // Disallow features that require cross-file information for emit. 27 | "isolatedModules": true, 28 | "allowSyntheticDefaultImports": true, 29 | // Import non-ES modules as default imports. 30 | "esModuleInterop": true, 31 | // Allow to import json files 32 | "resolveJsonModule": true, 33 | "skipLibCheck": true, 34 | "forceConsistentCasingInFileNames": true 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@^7.10.4": 6 | version "7.12.11" 7 | resolved "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/helper-validator-identifier@^7.10.4": 13 | version "7.12.11" 14 | resolved "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz#c9a1f021917dcb5ccf0d4e453e399022981fc9ed" 15 | integrity sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw== 16 | 17 | "@babel/highlight@^7.10.4": 18 | version "7.10.4" 19 | resolved "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz#7d1bdfd65753538fabe6c38596cdb76d9ac60143" 20 | integrity sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA== 21 | dependencies: 22 | "@babel/helper-validator-identifier" "^7.10.4" 23 | chalk "^2.0.0" 24 | js-tokens "^4.0.0" 25 | 26 | "@bcoe/v8-coverage@^0.2.3": 27 | version "0.2.3" 28 | resolved "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 29 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 30 | 31 | "@istanbuljs/schema@^0.1.2": 32 | version "0.1.2" 33 | resolved "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.2.tgz#26520bf09abe4a5644cd5414e37125a8954241dd" 34 | integrity sha512-tsAQNx32a8CoFhjhijUIhI4kccIAgmGhy8LZMZgGfmXcpMbPRUqn5LWmgRttILi6yeGmBJd2xsPkFMs0PzgPCw== 35 | 36 | "@nodelib/fs.scandir@2.1.4": 37 | version "2.1.4" 38 | resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.4.tgz#d4b3549a5db5de2683e0c1071ab4f140904bbf69" 39 | integrity sha512-33g3pMJk3bg5nXbL/+CY6I2eJDzZAni49PfJnL5fghPTggPvBd/pFNSgJsdAgWptuFu7qq/ERvOYFlhvsLTCKA== 40 | dependencies: 41 | "@nodelib/fs.stat" "2.0.4" 42 | run-parallel "^1.1.9" 43 | 44 | "@nodelib/fs.stat@2.0.4", "@nodelib/fs.stat@^2.0.2": 45 | version "2.0.4" 46 | resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.4.tgz#a3f2dd61bab43b8db8fa108a121cfffe4c676655" 47 | integrity sha512-IYlHJA0clt2+Vg7bccq+TzRdJvv19c2INqBSsoOLp1je7xjtr7J26+WXR72MCdvU9q1qTzIWDfhMf+DRvQJK4Q== 48 | 49 | "@nodelib/fs.walk@^1.2.3": 50 | version "1.2.6" 51 | resolved "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.6.tgz#cce9396b30aa5afe9e3756608f5831adcb53d063" 52 | integrity sha512-8Broas6vTtW4GIXTAHDoE32hnN2M5ykgCpWGbuXHQ15vEMqr23pB76e/GZcYsZCHALv50ktd24qhEyKr6wBtow== 53 | dependencies: 54 | "@nodelib/fs.scandir" "2.1.4" 55 | fastq "^1.6.0" 56 | 57 | "@types/clean-css@^4.2.3": 58 | version "4.2.3" 59 | resolved "https://registry.npmjs.org/@types/clean-css/-/clean-css-4.2.3.tgz#12c13cc815f5e793014ee002c6324455907d851c" 60 | integrity sha512-ET0ldU/vpXecy5vO8JRIhtJWSrk1vzXdJcp3Bjf8bARZynl6vfkhEKY/A7njfNIRlmyTGuVFuqnD6I3tOGdXpQ== 61 | dependencies: 62 | "@types/node" "*" 63 | source-map "^0.6.0" 64 | 65 | "@types/is-windows@^1.0.0": 66 | version "1.0.0" 67 | resolved "https://registry.npmjs.org/@types/is-windows/-/is-windows-1.0.0.tgz#1011fa129d87091e2f6faf9042d6704cdf2e7be0" 68 | integrity sha512-tJ1rq04tGKuIJoWIH0Gyuwv4RQ3+tIu7wQrC0MV47raQ44kIzXSSFKfrxFUOWVRvesoF7mrTqigXmqoZJsXwTg== 69 | 70 | "@types/istanbul-lib-coverage@^2.0.1": 71 | version "2.0.3" 72 | resolved "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 73 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== 74 | 75 | "@types/mri@*": 76 | version "1.1.0" 77 | resolved "https://registry.npmjs.org/@types/mri/-/mri-1.1.0.tgz#66555e4d797713789ea0fefdae0898d8170bf5af" 78 | integrity sha512-fMl88ZoZXOB7VKazJ6wUMpZc9QIn+jcigSFRf2K/rrw4DcXn+/uGxlWX8DDlcE7JkwgIZ7BDH+JgxZPlc/Ap3g== 79 | 80 | "@types/node@*", "@types/node@^14.14.31": 81 | version "14.14.31" 82 | resolved "https://registry.npmjs.org/@types/node/-/node-14.14.31.tgz#72286bd33d137aa0d152d47ec7c1762563d34055" 83 | integrity sha512-vFHy/ezP5qI0rFgJ7aQnjDXwAMrG0KqqIH7tQG5PPv3BWBayOPIQNBjVc/P6hhdZfMx51REc6tfDNXHUio893g== 84 | 85 | "@types/sade@^1.7.2": 86 | version "1.7.2" 87 | resolved "https://registry.npmjs.org/@types/sade/-/sade-1.7.2.tgz#d997d77fe136af56b1da289427dca82dfed6709b" 88 | integrity sha512-qVHZ70gLk2tCAqRanVOBVKM8og7eBhnWx1cdHMj8J3t4QF+PzIS9+pzZWZEx9ghsO1DDeGOTgyq5aQd5Bt/2dw== 89 | dependencies: 90 | "@types/mri" "*" 91 | 92 | "@types/supports-color@^7.2.0": 93 | version "7.2.0" 94 | resolved "https://registry.npmjs.org/@types/supports-color/-/supports-color-7.2.0.tgz#edd98ae52ee786b733a5dea0a23da4eb18ef7310" 95 | integrity sha512-gtUcOP6qIpjbSDdWjMBRNSks42ccx1709mwKTgelW63BESIADw8Ju7klpydDDb9Kr0iRXfpwrXH8+zoU8TCqiA== 96 | 97 | ansi-regex@^5.0.0: 98 | version "5.0.0" 99 | resolved "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 100 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 101 | 102 | ansi-styles@^3.2.1: 103 | version "3.2.1" 104 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 105 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 106 | dependencies: 107 | color-convert "^1.9.0" 108 | 109 | ansi-styles@^4.0.0: 110 | version "4.3.0" 111 | resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 112 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 113 | dependencies: 114 | color-convert "^2.0.1" 115 | 116 | any-promise@^1.0.0: 117 | version "1.3.0" 118 | resolved "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz#abc6afeedcea52e809cdc0376aed3ce39635d17f" 119 | integrity sha1-q8av7tzqUugJzcA3au0845Y10X8= 120 | 121 | anymatch@~3.1.1: 122 | version "3.1.1" 123 | resolved "https://registry.npmjs.org/anymatch/-/anymatch-3.1.1.tgz#c55ecf02185e2469259399310c173ce31233b142" 124 | integrity sha512-mM8522psRCqzV+6LhomX5wgp25YVibjh8Wj23I5RPkPppSVSjyKD2A2mBJmWGa+KN7f2D6LNh9jkBCeyLktzjg== 125 | dependencies: 126 | normalize-path "^3.0.0" 127 | picomatch "^2.0.4" 128 | 129 | array-union@^2.1.0: 130 | version "2.1.0" 131 | resolved "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 132 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 133 | 134 | balanced-match@^1.0.0: 135 | version "1.0.0" 136 | resolved "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz#89b4d199ab2bee49de164ea02b89ce462d71b767" 137 | integrity sha1-ibTRmasr7kneFk6gK4nORi1xt2c= 138 | 139 | binary-extensions@^2.0.0: 140 | version "2.2.0" 141 | resolved "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 142 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 143 | 144 | brace-expansion@^1.1.7: 145 | version "1.1.11" 146 | resolved "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 147 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 148 | dependencies: 149 | balanced-match "^1.0.0" 150 | concat-map "0.0.1" 151 | 152 | braces@^3.0.1, braces@~3.0.2: 153 | version "3.0.2" 154 | resolved "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 155 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 156 | dependencies: 157 | fill-range "^7.0.1" 158 | 159 | c8@^7.3.5: 160 | version "7.4.0" 161 | resolved "https://registry.npmjs.org/c8/-/c8-7.4.0.tgz#098ba30ba4a58de9e080645116ba8ae3d545fd5c" 162 | integrity sha512-K8I7MEe2i4L91YBX3HtV10kKpU5uqGeyjtsdGS2FxfT0pk15d9jthujjR1ORRLrCJ4tXuDK9PSH2vChzRDoAZw== 163 | dependencies: 164 | "@bcoe/v8-coverage" "^0.2.3" 165 | "@istanbuljs/schema" "^0.1.2" 166 | find-up "^5.0.0" 167 | foreground-child "^2.0.0" 168 | furi "^2.0.0" 169 | istanbul-lib-coverage "^3.0.0" 170 | istanbul-lib-report "^3.0.0" 171 | istanbul-reports "^3.0.2" 172 | rimraf "^3.0.0" 173 | test-exclude "^6.0.0" 174 | v8-to-istanbul "^7.1.0" 175 | yargs "^16.0.0" 176 | yargs-parser "^20.0.0" 177 | 178 | chalk@^2.0.0: 179 | version "2.4.2" 180 | resolved "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 181 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 182 | dependencies: 183 | ansi-styles "^3.2.1" 184 | escape-string-regexp "^1.0.5" 185 | supports-color "^5.3.0" 186 | 187 | chokidar@^3.5.1: 188 | version "3.5.1" 189 | resolved "https://registry.npmjs.org/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" 190 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 191 | dependencies: 192 | anymatch "~3.1.1" 193 | braces "~3.0.2" 194 | glob-parent "~5.1.0" 195 | is-binary-path "~2.1.0" 196 | is-glob "~4.0.1" 197 | normalize-path "~3.0.0" 198 | readdirp "~3.5.0" 199 | optionalDependencies: 200 | fsevents "~2.3.1" 201 | 202 | cliui@^7.0.2: 203 | version "7.0.4" 204 | resolved "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 205 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 206 | dependencies: 207 | string-width "^4.2.0" 208 | strip-ansi "^6.0.0" 209 | wrap-ansi "^7.0.0" 210 | 211 | color-convert@^1.9.0: 212 | version "1.9.3" 213 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 214 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 215 | dependencies: 216 | color-name "1.1.3" 217 | 218 | color-convert@^2.0.1: 219 | version "2.0.1" 220 | resolved "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 221 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 222 | dependencies: 223 | color-name "~1.1.4" 224 | 225 | color-name@1.1.3: 226 | version "1.1.3" 227 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 228 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 229 | 230 | color-name@~1.1.4: 231 | version "1.1.4" 232 | resolved "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 233 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 234 | 235 | commander@^4.0.0: 236 | version "4.1.1" 237 | resolved "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz#9fd602bd936294e9e9ef46a3f4d6964044b18068" 238 | integrity sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA== 239 | 240 | concat-map@0.0.1: 241 | version "0.0.1" 242 | resolved "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 243 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 244 | 245 | convert-hrtime@^3.0.0: 246 | version "3.0.0" 247 | resolved "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-3.0.0.tgz#62c7593f5809ca10be8da858a6d2f702bcda00aa" 248 | integrity sha512-7V+KqSvMiHp8yWDuwfww06XleMWVVB9b9tURBx+G7UTADuo5hYPuowKloz4OzOqbPezxgo+fdQ1522WzPG4OeA== 249 | 250 | convert-source-map@^1.6.0: 251 | version "1.7.0" 252 | resolved "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.7.0.tgz#17a2cb882d7f77d3490585e2ce6c524424a3a442" 253 | integrity sha512-4FJkXzKXEDB1snCFZlLP4gpC3JILicCpGbzG9f9G7tGqGCzETQ2hWPrcinA9oU4wtf2biUaEH5065UnMeR33oA== 254 | dependencies: 255 | safe-buffer "~5.1.1" 256 | 257 | cross-spawn@^7.0.0, cross-spawn@^7.0.3: 258 | version "7.0.3" 259 | resolved "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 260 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 261 | dependencies: 262 | path-key "^3.1.0" 263 | shebang-command "^2.0.0" 264 | which "^2.0.1" 265 | 266 | csstype@^3.0.5: 267 | version "3.0.6" 268 | resolved "https://registry.npmjs.org/csstype/-/csstype-3.0.6.tgz#865d0b5833d7d8d40f4e5b8a6d76aea3de4725ef" 269 | integrity sha512-+ZAmfyWMT7TiIlzdqJgjMb7S4f1beorDbWbsocyK4RaiqA5RTX3K14bnBWmmA9QEM0gRdsjyyrEmcyga8Zsxmw== 270 | 271 | dequal@^2.0.0: 272 | version "2.0.2" 273 | resolved "https://registry.npmjs.org/dequal/-/dequal-2.0.2.tgz#85ca22025e3a87e65ef75a7a437b35284a7e319d" 274 | integrity sha512-q9K8BlJVxK7hQYqa6XISGmBZbtQQWVXSrRrWreHC94rMt1QL/Impruc+7p2CYSYuVIUr+YCt6hjrs1kkdJRTug== 275 | 276 | diff@^5.0.0: 277 | version "5.0.0" 278 | resolved "https://registry.npmjs.org/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" 279 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== 280 | 281 | dir-glob@^3.0.1: 282 | version "3.0.1" 283 | resolved "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 284 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 285 | dependencies: 286 | path-type "^4.0.0" 287 | 288 | distilt@^0.10.4: 289 | version "0.10.4" 290 | resolved "https://registry.npmjs.org/distilt/-/distilt-0.10.4.tgz#814211450ead65619bc79f917dc6b93820fc1e11" 291 | integrity sha512-+F1cpyQ53YgxLffA2PIqgWO6QH1HB9uQhfXJHhohxmH06ilWbVxuZiYuFenv2aVrPBIBfq0TVubHJnnr4Y7ydQ== 292 | dependencies: 293 | es-module-lexer "^0.3.26" 294 | esbuild "^0.9.3" 295 | execa "^5.0.0" 296 | find-up "^5.0.0" 297 | globby "^11.0.1" 298 | pkg-dir "^5.0.0" 299 | project-root-directory "^1.0.3" 300 | rollup "^2.35.1" 301 | rollup-plugin-dts "^2.0.1" 302 | 303 | dom-serializer@^1.0.1: 304 | version "1.2.0" 305 | resolved "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.2.0.tgz#3433d9136aeb3c627981daa385fc7f32d27c48f1" 306 | integrity sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA== 307 | dependencies: 308 | domelementtype "^2.0.1" 309 | domhandler "^4.0.0" 310 | entities "^2.0.0" 311 | 312 | domelementtype@^2.0.1, domelementtype@^2.1.0: 313 | version "2.1.0" 314 | resolved "https://registry.npmjs.org/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" 315 | integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== 316 | 317 | domhandler@^4.0.0: 318 | version "4.0.0" 319 | resolved "https://registry.npmjs.org/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e" 320 | integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA== 321 | dependencies: 322 | domelementtype "^2.1.0" 323 | 324 | domutils@^2.4.4: 325 | version "2.4.4" 326 | resolved "https://registry.npmjs.org/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" 327 | integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== 328 | dependencies: 329 | dom-serializer "^1.0.1" 330 | domelementtype "^2.0.1" 331 | domhandler "^4.0.0" 332 | 333 | emoji-regex@^8.0.0: 334 | version "8.0.0" 335 | resolved "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 336 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 337 | 338 | entities@^2.0.0: 339 | version "2.2.0" 340 | resolved "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" 341 | integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== 342 | 343 | es-module-lexer@^0.3.26: 344 | version "0.3.26" 345 | resolved "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.3.26.tgz#7b507044e97d5b03b01d4392c74ffeb9c177a83b" 346 | integrity sha512-Va0Q/xqtrss45hWzP8CZJwzGSZJjDM5/MJRE3IXXnUCcVLElR9BRaE9F62BopysASyc4nM3uwhSW7FFB9nlWAA== 347 | 348 | esbuild-register@^2.3.0: 349 | version "2.3.0" 350 | resolved "https://registry.npmjs.org/esbuild-register/-/esbuild-register-2.3.0.tgz#c7c6e2cabdce0e7aa5f30be774302d3fc1ebd02e" 351 | integrity sha512-uT3WXEQGAqzrI0SLy1Jz39BzIBiLWd5La9zFZ+FUSCPGqJbE+ZJHUTE8yHP1GVfyHKrrAFCZqLieaHkSprIRDQ== 352 | dependencies: 353 | esbuild "^0.9.2" 354 | jsonc-parser "^3.0.0" 355 | 356 | esbuild@^0.9.2, esbuild@^0.9.3, esbuild@^0.9.6: 357 | version "0.9.6" 358 | resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.9.6.tgz#2cae519e7ce2328ecf57ae738090d07ce7245850" 359 | integrity sha512-F6vASxU0wT/Davt9aj2qtDwDNSkQxh9VbyO56M7PDWD+D/Vgq/rmUDGDQo7te76W5auauVojjnQr/wTu3vpaUA== 360 | 361 | escalade@^3.1.1: 362 | version "3.1.1" 363 | resolved "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 364 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 365 | 366 | escape-string-regexp@^1.0.5: 367 | version "1.0.5" 368 | resolved "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 369 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 370 | 371 | esm@^3.2.25: 372 | version "3.2.25" 373 | resolved "https://registry.npmjs.org/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10" 374 | integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA== 375 | 376 | execa@^5.0.0: 377 | version "5.0.0" 378 | resolved "https://registry.npmjs.org/execa/-/execa-5.0.0.tgz#4029b0007998a841fbd1032e5f4de86a3c1e3376" 379 | integrity sha512-ov6w/2LCiuyO4RLYGdpFGjkcs0wMTgGE8PrkTHikeUy5iJekXyPIKUjifk5CsE0pt7sMCrMZ3YNqoCj6idQOnQ== 380 | dependencies: 381 | cross-spawn "^7.0.3" 382 | get-stream "^6.0.0" 383 | human-signals "^2.1.0" 384 | is-stream "^2.0.0" 385 | merge-stream "^2.0.0" 386 | npm-run-path "^4.0.1" 387 | onetime "^5.1.2" 388 | signal-exit "^3.0.3" 389 | strip-final-newline "^2.0.0" 390 | 391 | fast-glob@^3.1.1: 392 | version "3.2.5" 393 | resolved "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" 394 | integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== 395 | dependencies: 396 | "@nodelib/fs.stat" "^2.0.2" 397 | "@nodelib/fs.walk" "^1.2.3" 398 | glob-parent "^5.1.0" 399 | merge2 "^1.3.0" 400 | micromatch "^4.0.2" 401 | picomatch "^2.2.1" 402 | 403 | fastq@^1.6.0: 404 | version "1.10.1" 405 | resolved "https://registry.npmjs.org/fastq/-/fastq-1.10.1.tgz#8b8f2ac8bf3632d67afcd65dac248d5fdc45385e" 406 | integrity sha512-AWuv6Ery3pM+dY7LYS8YIaCiQvUaos9OB1RyNgaOWnaX+Tik7Onvcsf8x8c+YtDeT0maYLniBip2hox5KtEXXA== 407 | dependencies: 408 | reusify "^1.0.4" 409 | 410 | fill-range@^7.0.1: 411 | version "7.0.1" 412 | resolved "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 413 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 414 | dependencies: 415 | to-regex-range "^5.0.1" 416 | 417 | find-up@^5.0.0: 418 | version "5.0.0" 419 | resolved "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 420 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 421 | dependencies: 422 | locate-path "^6.0.0" 423 | path-exists "^4.0.0" 424 | 425 | foreground-child@^2.0.0: 426 | version "2.0.0" 427 | resolved "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz#71b32800c9f15aa8f2f83f4a6bd9bff35d861a53" 428 | integrity sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA== 429 | dependencies: 430 | cross-spawn "^7.0.0" 431 | signal-exit "^3.0.2" 432 | 433 | fs.realpath@^1.0.0: 434 | version "1.0.0" 435 | resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 436 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 437 | 438 | fsevents@~2.1.2: 439 | version "2.1.3" 440 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.1.3.tgz#fb738703ae8d2f9fe900c33836ddebee8b97f23e" 441 | integrity sha512-Auw9a4AxqWpa9GUfj370BMPzzyncfBABW8Mab7BGWBYDj4Isgq+cDKtx0i6u9jcX9pQDnswsaaOTgTmA5pEjuQ== 442 | 443 | fsevents@~2.3.1: 444 | version "2.3.2" 445 | resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 446 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 447 | 448 | furi@^2.0.0: 449 | version "2.0.0" 450 | resolved "https://registry.npmjs.org/furi/-/furi-2.0.0.tgz#13d85826a1af21acc691da6254b3888fc39f0b4a" 451 | integrity sha512-uKuNsaU0WVaK/vmvj23wW1bicOFfyqSsAIH71bRZx8kA4Xj+YCHin7CJKJJjkIsmxYaPFLk9ljmjEyB7xF7WvQ== 452 | dependencies: 453 | "@types/is-windows" "^1.0.0" 454 | is-windows "^1.0.2" 455 | 456 | get-caller-file@^2.0.5: 457 | version "2.0.5" 458 | resolved "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 459 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 460 | 461 | get-stream@^6.0.0: 462 | version "6.0.0" 463 | resolved "https://registry.npmjs.org/get-stream/-/get-stream-6.0.0.tgz#3e0012cb6827319da2706e601a1583e8629a6718" 464 | integrity sha512-A1B3Bh1UmL0bidM/YX2NsCOTnGJePL9rO/M+Mw3m9f2gUpfokS0hi5Eah0WSUEWZdZhIZtMjkIYS7mDfOqNHbg== 465 | 466 | glob-parent@^5.1.0, glob-parent@~5.1.0: 467 | version "5.1.1" 468 | resolved "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.1.tgz#b6c1ef417c4e5663ea498f1c45afac6916bbc229" 469 | integrity sha512-FnI+VGOpnlGHWZxthPGR+QhR78fuiK0sNLkHQv+bL9fQi57lNNdquIbna/WrfROrolq8GK5Ek6BiMwqL/voRYQ== 470 | dependencies: 471 | is-glob "^4.0.1" 472 | 473 | glob@7.1.6, glob@^7.1.3, glob@^7.1.4: 474 | version "7.1.6" 475 | resolved "https://registry.npmjs.org/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 476 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 477 | dependencies: 478 | fs.realpath "^1.0.0" 479 | inflight "^1.0.4" 480 | inherits "2" 481 | minimatch "^3.0.4" 482 | once "^1.3.0" 483 | path-is-absolute "^1.0.0" 484 | 485 | globby@^11.0.1: 486 | version "11.0.2" 487 | resolved "https://registry.npmjs.org/globby/-/globby-11.0.2.tgz#1af538b766a3b540ebfb58a32b2e2d5897321d83" 488 | integrity sha512-2ZThXDvvV8fYFRVIxnrMQBipZQDr7MxKAmQK1vujaj9/7eF0efG7BPUKJ7jP7G5SLF37xKDXvO4S/KKLj/Z0og== 489 | dependencies: 490 | array-union "^2.1.0" 491 | dir-glob "^3.0.1" 492 | fast-glob "^3.1.1" 493 | ignore "^5.1.4" 494 | merge2 "^1.3.0" 495 | slash "^3.0.0" 496 | 497 | has-flag@^3.0.0: 498 | version "3.0.0" 499 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 500 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 501 | 502 | has-flag@^4.0.0: 503 | version "4.0.0" 504 | resolved "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 505 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 506 | 507 | html-escaper@^2.0.0: 508 | version "2.0.2" 509 | resolved "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 510 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 511 | 512 | htmlparser2@^6.0.0: 513 | version "6.0.0" 514 | resolved "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.0.0.tgz#c2da005030390908ca4c91e5629e418e0665ac01" 515 | integrity sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw== 516 | dependencies: 517 | domelementtype "^2.0.1" 518 | domhandler "^4.0.0" 519 | domutils "^2.4.4" 520 | entities "^2.0.0" 521 | 522 | human-signals@^2.1.0: 523 | version "2.1.0" 524 | resolved "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 525 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 526 | 527 | ignore@^5.1.4, ignore@^5.1.8: 528 | version "5.1.8" 529 | resolved "https://registry.npmjs.org/ignore/-/ignore-5.1.8.tgz#f150a8b50a34289b33e22f5889abd4d8016f0e57" 530 | integrity sha512-BMpfD7PpiETpBl/A6S498BaIJ6Y/ABT93ETbby2fP00v4EbvPBXWEoaR1UBPKs3iR53pJY7EtZk5KACI57i1Uw== 531 | 532 | inflight@^1.0.4: 533 | version "1.0.6" 534 | resolved "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 535 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 536 | dependencies: 537 | once "^1.3.0" 538 | wrappy "1" 539 | 540 | inherits@2: 541 | version "2.0.4" 542 | resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 543 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 544 | 545 | is-binary-path@~2.1.0: 546 | version "2.1.0" 547 | resolved "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 548 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 549 | dependencies: 550 | binary-extensions "^2.0.0" 551 | 552 | is-extglob@^2.1.1: 553 | version "2.1.1" 554 | resolved "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 555 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 556 | 557 | is-fullwidth-code-point@^3.0.0: 558 | version "3.0.0" 559 | resolved "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 560 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 561 | 562 | is-glob@^4.0.1, is-glob@~4.0.1: 563 | version "4.0.1" 564 | resolved "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 565 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 566 | dependencies: 567 | is-extglob "^2.1.1" 568 | 569 | is-number@^7.0.0: 570 | version "7.0.0" 571 | resolved "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 572 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 573 | 574 | is-stream@^2.0.0: 575 | version "2.0.0" 576 | resolved "https://registry.npmjs.org/is-stream/-/is-stream-2.0.0.tgz#bde9c32680d6fae04129d6ac9d921ce7815f78e3" 577 | integrity sha512-XCoy+WlUr7d1+Z8GgSuXmpuUFC9fOhRXglJMx+dwLKTkL44Cjd4W1Z5P+BQZpr+cR93aGP4S/s7Ftw6Nd/kiEw== 578 | 579 | is-windows@^1.0.2: 580 | version "1.0.2" 581 | resolved "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz#d1850eb9791ecd18e6182ce12a30f396634bb19d" 582 | integrity sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA== 583 | 584 | isexe@^2.0.0: 585 | version "2.0.0" 586 | resolved "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 587 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 588 | 589 | istanbul-lib-coverage@^3.0.0: 590 | version "3.0.0" 591 | resolved "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.0.tgz#f5944a37c70b550b02a78a5c3b2055b280cec8ec" 592 | integrity sha512-UiUIqxMgRDET6eR+o5HbfRYP1l0hqkWOs7vNxC/mggutCMUIhWMm8gAHb8tHlyfD3/l6rlgNA5cKdDzEAf6hEg== 593 | 594 | istanbul-lib-report@^3.0.0: 595 | version "3.0.0" 596 | resolved "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 597 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 598 | dependencies: 599 | istanbul-lib-coverage "^3.0.0" 600 | make-dir "^3.0.0" 601 | supports-color "^7.1.0" 602 | 603 | istanbul-reports@^3.0.2: 604 | version "3.0.2" 605 | resolved "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.0.2.tgz#d593210e5000683750cb09fc0644e4b6e27fd53b" 606 | integrity sha512-9tZvz7AiR3PEDNGiV9vIouQ/EAcqMXFmkcA1CDFTwOB98OZVDL0PH9glHotf5Ugp6GCOTypfzGWI/OqjWNCRUw== 607 | dependencies: 608 | html-escaper "^2.0.0" 609 | istanbul-lib-report "^3.0.0" 610 | 611 | js-tokens@^4.0.0: 612 | version "4.0.0" 613 | resolved "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 614 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 615 | 616 | jsonc-parser@^3.0.0: 617 | version "3.0.0" 618 | resolved "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.0.0.tgz#abdd785701c7e7eaca8a9ec8cf070ca51a745a22" 619 | integrity sha512-fQzRfAbIBnR0IQvftw9FJveWiHp72Fg20giDrHz6TdfB12UH/uue0D3hm57UB5KgAVuniLMCaS8P1IMj9NR7cA== 620 | 621 | kleur@^4.0.3, kleur@^4.1.4: 622 | version "4.1.4" 623 | resolved "https://registry.npmjs.org/kleur/-/kleur-4.1.4.tgz#8c202987d7e577766d039a8cd461934c01cda04d" 624 | integrity sha512-8QADVssbrFjivHWQU7KkMgptGTl6WAcSdlbBPY4uNF+mWr6DGcKrvY2w4FQJoXch7+fKMjj0dRrL75vk3k23OA== 625 | 626 | lines-and-columns@^1.1.6: 627 | version "1.1.6" 628 | resolved "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" 629 | integrity sha1-HADHQ7QzzQpOgHWPe2SldEDZ/wA= 630 | 631 | locate-path@^6.0.0: 632 | version "6.0.0" 633 | resolved "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 634 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 635 | dependencies: 636 | p-locate "^5.0.0" 637 | 638 | magic-string@^0.25.7: 639 | version "0.25.7" 640 | resolved "https://registry.npmjs.org/magic-string/-/magic-string-0.25.7.tgz#3f497d6fd34c669c6798dcb821f2ef31f5445051" 641 | integrity sha512-4CrMT5DOHTDk4HYDlzmwu4FVCcIYI8gauveasrdCu2IKIFOJ3f0v/8MDGJCDL9oD2ppz/Av1b0Nj345H9M+XIA== 642 | dependencies: 643 | sourcemap-codec "^1.4.4" 644 | 645 | make-dir@^3.0.0: 646 | version "3.1.0" 647 | resolved "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 648 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 649 | dependencies: 650 | semver "^6.0.0" 651 | 652 | merge-stream@^2.0.0: 653 | version "2.0.0" 654 | resolved "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 655 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 656 | 657 | merge2@^1.3.0: 658 | version "1.4.1" 659 | resolved "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 660 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 661 | 662 | micromatch@^4.0.2: 663 | version "4.0.2" 664 | resolved "https://registry.npmjs.org/micromatch/-/micromatch-4.0.2.tgz#4fcb0999bf9fbc2fcbdd212f6d629b9a56c39259" 665 | integrity sha512-y7FpHSbMUMoyPbYUSzO6PaZ6FyRnQOpHuKwbo1G+Knck95XVU4QAiKdGEnj5wwoS7PlOgthX/09u5iFJ+aYf5Q== 666 | dependencies: 667 | braces "^3.0.1" 668 | picomatch "^2.0.5" 669 | 670 | mimic-fn@^2.1.0: 671 | version "2.1.0" 672 | resolved "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 673 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 674 | 675 | minimatch@^3.0.4: 676 | version "3.0.4" 677 | resolved "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 678 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 679 | dependencies: 680 | brace-expansion "^1.1.7" 681 | 682 | mri@^1.1.0, mri@^1.1.5: 683 | version "1.1.6" 684 | resolved "https://registry.npmjs.org/mri/-/mri-1.1.6.tgz#49952e1044db21dbf90f6cd92bc9c9a777d415a6" 685 | integrity sha512-oi1b3MfbyGa7FJMP9GmLTttni5JoICpYBRlq+x5V16fZbLsnL9N3wFqqIm/nIG43FjUFkFh9Epzp/kzUGUnJxQ== 686 | 687 | mz@^2.7.0: 688 | version "2.7.0" 689 | resolved "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz#95008057a56cafadc2bc63dde7f9ff6955948e32" 690 | integrity sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q== 691 | dependencies: 692 | any-promise "^1.0.0" 693 | object-assign "^4.0.1" 694 | thenify-all "^1.0.0" 695 | 696 | node-modules-regexp@^1.0.0: 697 | version "1.0.0" 698 | resolved "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 699 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 700 | 701 | normalize-path@^3.0.0, normalize-path@~3.0.0: 702 | version "3.0.0" 703 | resolved "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 704 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 705 | 706 | npm-run-path@^4.0.1: 707 | version "4.0.1" 708 | resolved "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 709 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 710 | dependencies: 711 | path-key "^3.0.0" 712 | 713 | object-assign@^4.0.1: 714 | version "4.1.1" 715 | resolved "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863" 716 | integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM= 717 | 718 | once@^1.3.0: 719 | version "1.4.0" 720 | resolved "https://registry.npmjs.org/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 721 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 722 | dependencies: 723 | wrappy "1" 724 | 725 | onetime@^5.1.2: 726 | version "5.1.2" 727 | resolved "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 728 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 729 | dependencies: 730 | mimic-fn "^2.1.0" 731 | 732 | p-debounce@^2.1.0: 733 | version "2.1.0" 734 | resolved "https://registry.npmjs.org/p-debounce/-/p-debounce-2.1.0.tgz#e79f70c6e325cbb9bddbcbec0b81025084671ad3" 735 | integrity sha512-M9bMt62TTnozdZhqFgs+V7XD2MnuKCaz+7fZdlu2/T7xruI3uIE5CicQ0vx1hV7HIUYF0jF+4/R1AgfOkl74Qw== 736 | 737 | p-event@^4.2.0: 738 | version "4.2.0" 739 | resolved "https://registry.npmjs.org/p-event/-/p-event-4.2.0.tgz#af4b049c8acd91ae81083ebd1e6f5cae2044c1b5" 740 | integrity sha512-KXatOjCRXXkSePPb1Nbi0p0m+gQAwdlbhi4wQKJPI1HsMQS9g+Sqp2o+QHziPr7eYJyOZet836KoHEVM1mwOrQ== 741 | dependencies: 742 | p-timeout "^3.1.0" 743 | 744 | p-finally@^1.0.0: 745 | version "1.0.0" 746 | resolved "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" 747 | integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4= 748 | 749 | p-limit@^3.0.2: 750 | version "3.1.0" 751 | resolved "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 752 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 753 | dependencies: 754 | yocto-queue "^0.1.0" 755 | 756 | p-locate@^5.0.0: 757 | version "5.0.0" 758 | resolved "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 759 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 760 | dependencies: 761 | p-limit "^3.0.2" 762 | 763 | p-timeout@^3.1.0: 764 | version "3.2.0" 765 | resolved "https://registry.npmjs.org/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" 766 | integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== 767 | dependencies: 768 | p-finally "^1.0.0" 769 | 770 | path-exists@^4.0.0: 771 | version "4.0.0" 772 | resolved "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 773 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 774 | 775 | path-is-absolute@^1.0.0: 776 | version "1.0.1" 777 | resolved "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 778 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 779 | 780 | path-key@^3.0.0, path-key@^3.1.0: 781 | version "3.1.1" 782 | resolved "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 783 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 784 | 785 | path-type@^4.0.0: 786 | version "4.0.0" 787 | resolved "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 788 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 789 | 790 | picomatch@^2.0.4, picomatch@^2.0.5, picomatch@^2.2.1: 791 | version "2.2.2" 792 | resolved "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz#21f333e9b6b8eaff02468f5146ea406d345f4dad" 793 | integrity sha512-q0M/9eZHzmr0AulXyPwNfZjtwZ/RBZlbN3K3CErVrk50T2ASYI7Bye0EvekFY3IP1Nt2DHu0re+V2ZHIpMkuWg== 794 | 795 | pirates@^4.0.1: 796 | version "4.0.1" 797 | resolved "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 798 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== 799 | dependencies: 800 | node-modules-regexp "^1.0.0" 801 | 802 | pkg-dir@^5.0.0: 803 | version "5.0.0" 804 | resolved "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" 805 | integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== 806 | dependencies: 807 | find-up "^5.0.0" 808 | 809 | prettier@^2.0.5: 810 | version "2.2.1" 811 | resolved "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" 812 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 813 | 814 | project-root-directory@^1.0.3: 815 | version "1.0.3" 816 | resolved "https://registry.npmjs.org/project-root-directory/-/project-root-directory-1.0.3.tgz#b83f25a76fa4aeb64f69a95cc9c83035c96ee045" 817 | integrity sha512-GVRoyflCe4VYlGwtEVcQngm1FMuu9q9KJfEK85g5OWGUTxc+iYvnMT64ixvxEgN48chvBWe2fc2ZGATSJMRyqQ== 818 | dependencies: 819 | resolve-from "^5.0.0" 820 | 821 | readdirp@~3.5.0: 822 | version "3.5.0" 823 | resolved "https://registry.npmjs.org/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 824 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 825 | dependencies: 826 | picomatch "^2.2.1" 827 | 828 | require-directory@^2.1.1: 829 | version "2.1.1" 830 | resolved "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 831 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 832 | 833 | resolve-from@^5.0.0: 834 | version "5.0.0" 835 | resolved "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 836 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 837 | 838 | reusify@^1.0.4: 839 | version "1.0.4" 840 | resolved "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 841 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 842 | 843 | rimraf@^3.0.0: 844 | version "3.0.2" 845 | resolved "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 846 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 847 | dependencies: 848 | glob "^7.1.3" 849 | 850 | rollup-plugin-dts@^2.0.1: 851 | version "2.0.1" 852 | resolved "https://registry.npmjs.org/rollup-plugin-dts/-/rollup-plugin-dts-2.0.1.tgz#333f50a637e199a073d490b198746f3c6bd07701" 853 | integrity sha512-y38NSXIY37YExCumbGBTL5dXg7pL7XD+Kbe98iEHWFN9yiKJf7t4kKBOkml5ylUDjQIXBnNClGDeRktc1T5dmA== 854 | dependencies: 855 | magic-string "^0.25.7" 856 | optionalDependencies: 857 | "@babel/code-frame" "^7.10.4" 858 | 859 | rollup@^2.35.1: 860 | version "2.38.1" 861 | resolved "https://registry.npmjs.org/rollup/-/rollup-2.38.1.tgz#ecea0f7ce6ef2c1f023fdb79524eb7aeb670ea79" 862 | integrity sha512-q07T6vU/V1kqM8rGRRyCgEvIQcIAXoKIE5CpkYAlHhfiWM1Iuh4dIPWpIbqFngCK6lwAB2aYHiUVhIbSWHQWhw== 863 | optionalDependencies: 864 | fsevents "~2.1.2" 865 | 866 | run-parallel@^1.1.9: 867 | version "1.1.10" 868 | resolved "https://registry.npmjs.org/run-parallel/-/run-parallel-1.1.10.tgz#60a51b2ae836636c81377df16cb107351bcd13ef" 869 | integrity sha512-zb/1OuZ6flOlH6tQyMPUrE3x3Ulxjlo9WIVXR4yVYi4H9UXQaeIsPbLn2R3O3vQCnDKkAl2qHiuocKKX4Tz/Sw== 870 | 871 | sade@^1.7.3, sade@^1.7.4: 872 | version "1.7.4" 873 | resolved "https://registry.npmjs.org/sade/-/sade-1.7.4.tgz#ea681e0c65d248d2095c90578c03ca0bb1b54691" 874 | integrity sha512-y5yauMD93rX840MwUJr7C1ysLFBgMspsdTo4UVrDg3fXDvtwOyIqykhVAAm6fk/3au77773itJStObgK+LKaiA== 875 | dependencies: 876 | mri "^1.1.0" 877 | 878 | safe-buffer@~5.1.1: 879 | version "5.1.2" 880 | resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 881 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 882 | 883 | semver@^6.0.0: 884 | version "6.3.0" 885 | resolved "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" 886 | integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== 887 | 888 | shebang-command@^2.0.0: 889 | version "2.0.0" 890 | resolved "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 891 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 892 | dependencies: 893 | shebang-regex "^3.0.0" 894 | 895 | shebang-regex@^3.0.0: 896 | version "3.0.0" 897 | resolved "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 898 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 899 | 900 | signal-exit@^3.0.2, signal-exit@^3.0.3: 901 | version "3.0.3" 902 | resolved "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.3.tgz#a1410c2edd8f077b08b4e253c8eacfcaf057461c" 903 | integrity sha512-VUJ49FC8U1OxwZLxIbTTrDvLnf/6TDgxZcK8wxR8zs13xpx7xbG60ndBlhNrFi2EMuFRoeDoJO7wthSLq42EjA== 904 | 905 | slash@^3.0.0: 906 | version "3.0.0" 907 | resolved "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 908 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 909 | 910 | source-map@^0.6.0: 911 | version "0.6.1" 912 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 913 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 914 | 915 | source-map@^0.7.3: 916 | version "0.7.3" 917 | resolved "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 918 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 919 | 920 | sourcemap-codec@^1.4.4: 921 | version "1.4.8" 922 | resolved "https://registry.npmjs.org/sourcemap-codec/-/sourcemap-codec-1.4.8.tgz#ea804bd94857402e6992d05a38ef1ae35a9ab4c4" 923 | integrity sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA== 924 | 925 | string-width@^4.1.0, string-width@^4.2.0: 926 | version "4.2.0" 927 | resolved "https://registry.npmjs.org/string-width/-/string-width-4.2.0.tgz#952182c46cc7b2c313d1596e623992bd163b72b5" 928 | integrity sha512-zUz5JD+tgqtuDjMhwIg5uFVV3dtqZ9yQJlZVfq4I01/K5Paj5UHj7VyrQOJvzawSVlKpObApbfD0Ed6yJc+1eg== 929 | dependencies: 930 | emoji-regex "^8.0.0" 931 | is-fullwidth-code-point "^3.0.0" 932 | strip-ansi "^6.0.0" 933 | 934 | strip-ansi@^6.0.0: 935 | version "6.0.0" 936 | resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 937 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 938 | dependencies: 939 | ansi-regex "^5.0.0" 940 | 941 | strip-final-newline@^2.0.0: 942 | version "2.0.0" 943 | resolved "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 944 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 945 | 946 | style-vendorizer@^2.0.0: 947 | version "2.0.0" 948 | resolved "https://registry.npmjs.org/style-vendorizer/-/style-vendorizer-2.0.0.tgz#0c46cec94069f1c768d31c3d307ed045646f503c" 949 | integrity sha512-CeqwnrtXd/DKIadVNdJDtHnpCmsc28rWVWLmgpF2HdzTiWFVCE1F1OzWWwskOEtWpOpgm6NrjccfkNGo8qW4MA== 950 | 951 | sucrase@^3.17.1: 952 | version "3.17.1" 953 | resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.17.1.tgz#b5e35ca7d99db2cc82b3e942934c3746b41ff8e2" 954 | integrity sha512-04cNLFAhS4NBG2Z/MTkLY6HdoBsqErv3wCncymFlfFtnpMthurlWYML2RlID4M2BbiJSu1eZdQnE8Lcz4PCe2g== 955 | dependencies: 956 | commander "^4.0.0" 957 | glob "7.1.6" 958 | lines-and-columns "^1.1.6" 959 | mz "^2.7.0" 960 | pirates "^4.0.1" 961 | ts-interface-checker "^0.1.9" 962 | 963 | supports-color@^5.3.0: 964 | version "5.5.0" 965 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 966 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 967 | dependencies: 968 | has-flag "^3.0.0" 969 | 970 | supports-color@^7.1.0: 971 | version "7.2.0" 972 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 973 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 974 | dependencies: 975 | has-flag "^4.0.0" 976 | 977 | supports-color@^8.1.1: 978 | version "8.1.1" 979 | resolved "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 980 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 981 | dependencies: 982 | has-flag "^4.0.0" 983 | 984 | test-exclude@^6.0.0: 985 | version "6.0.0" 986 | resolved "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 987 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 988 | dependencies: 989 | "@istanbuljs/schema" "^0.1.2" 990 | glob "^7.1.4" 991 | minimatch "^3.0.4" 992 | 993 | thenify-all@^1.0.0: 994 | version "1.6.0" 995 | resolved "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz#1a1918d402d8fc3f98fbf234db0bcc8cc10e9726" 996 | integrity sha1-GhkY1ALY/D+Y+/I02wvMjMEOlyY= 997 | dependencies: 998 | thenify ">= 3.1.0 < 4" 999 | 1000 | "thenify@>= 3.1.0 < 4": 1001 | version "3.3.1" 1002 | resolved "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz#8932e686a4066038a016dd9e2ca46add9838a95f" 1003 | integrity sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw== 1004 | dependencies: 1005 | any-promise "^1.0.0" 1006 | 1007 | time-span@^4.0.0: 1008 | version "4.0.0" 1009 | resolved "https://registry.npmjs.org/time-span/-/time-span-4.0.0.tgz#fe74cd50a54e7998712f90ddfe47109040c985c4" 1010 | integrity sha512-MyqZCTGLDZ77u4k+jqg4UlrzPTPZ49NDlaekU6uuFaJLzPIN1woaRXCbGeqOfxwc3Y37ZROGAJ614Rdv7Olt+g== 1011 | dependencies: 1012 | convert-hrtime "^3.0.0" 1013 | 1014 | to-regex-range@^5.0.1: 1015 | version "5.0.1" 1016 | resolved "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1017 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1018 | dependencies: 1019 | is-number "^7.0.0" 1020 | 1021 | totalist@^2.0.0: 1022 | version "2.0.0" 1023 | resolved "https://registry.npmjs.org/totalist/-/totalist-2.0.0.tgz#db6f1e19c0fa63e71339bbb8fba89653c18c7eec" 1024 | integrity sha512-+Y17F0YzxfACxTyjfhnJQEe7afPA0GSpYlFkl2VFMxYP7jshQf9gXV7cH47EfToBumFThfKBvfAcoUn6fdNeRQ== 1025 | 1026 | ts-interface-checker@^0.1.9: 1027 | version "0.1.13" 1028 | resolved "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz#784fd3d679722bc103b1b4b8030bcddb5db2a699" 1029 | integrity sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA== 1030 | 1031 | twind@^0.16.9: 1032 | version "0.16.9" 1033 | resolved "https://registry.npmjs.org/twind/-/twind-0.16.9.tgz#62d04a12d4a96f5f1e72e477af4e8634f356eaac" 1034 | integrity sha512-cOpijhtEMEaIhHQ4H3+K/APn1kAYkMtV3fMB/zBfXP+rmKiwjnNZSot8w8YNGnKDqLbV+uCSuFiZtPL60Jscaw== 1035 | dependencies: 1036 | csstype "^3.0.5" 1037 | htmlparser2 "^6.0.0" 1038 | style-vendorizer "^2.0.0" 1039 | 1040 | typescript@^4.1.3: 1041 | version "4.1.3" 1042 | resolved "https://registry.npmjs.org/typescript/-/typescript-4.1.3.tgz#519d582bd94cba0cf8934c7d8e8467e473f53bb7" 1043 | integrity sha512-B3ZIOf1IKeH2ixgHhj6la6xdwR9QrLC5d1VKeCSY4tvkqhF2eqd9O7txNlS0PO3GrBAFIdr3L1ndNwteUbZLYg== 1044 | 1045 | uvu@^0.5.1: 1046 | version "0.5.1" 1047 | resolved "https://registry.npmjs.org/uvu/-/uvu-0.5.1.tgz#938b85f96b8a478e585363ad1849933b6c481b28" 1048 | integrity sha512-JGxttnOGDFs77FaZ0yMUHIzczzQ5R1IlDeNW6Wymw6gAscwMdAffVOP6TlxLIfReZyK8tahoGwWZaTCJzNFDkg== 1049 | dependencies: 1050 | dequal "^2.0.0" 1051 | diff "^5.0.0" 1052 | kleur "^4.0.3" 1053 | sade "^1.7.3" 1054 | totalist "^2.0.0" 1055 | 1056 | v8-compile-cache@^2.2.0: 1057 | version "2.2.0" 1058 | resolved "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.2.0.tgz#9471efa3ef9128d2f7c6a7ca39c4dd6b5055b132" 1059 | integrity sha512-gTpR5XQNKFwOd4clxfnhaqvfqMpqEwr4tOtCyz4MtYZX2JYhfr1JvBFKdS+7K/9rfpZR3VLX+YWBbKoxCgS43Q== 1060 | 1061 | v8-to-istanbul@^7.1.0: 1062 | version "7.1.0" 1063 | resolved "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.0.tgz#5b95cef45c0f83217ec79f8fc7ee1c8b486aee07" 1064 | integrity sha512-uXUVqNUCLa0AH1vuVxzi+MI4RfxEOKt9pBgKwHbgH7st8Kv2P1m+jvWNnektzBh5QShF3ODgKmUFCf38LnVz1g== 1065 | dependencies: 1066 | "@types/istanbul-lib-coverage" "^2.0.1" 1067 | convert-source-map "^1.6.0" 1068 | source-map "^0.7.3" 1069 | 1070 | watchlist@^0.2.3: 1071 | version "0.2.3" 1072 | resolved "https://registry.npmjs.org/watchlist/-/watchlist-0.2.3.tgz#90af76d7d0d4c00b8b0eecddae1c247447f86136" 1073 | integrity sha512-xStuPg489QXZbRirnmIMo7OaKFnGkvTQn7tCUC/sVmVVEvDQQnnVl/k9D5yg3nXgpebgPHpfApBLHMpEbAqvSQ== 1074 | dependencies: 1075 | mri "^1.1.5" 1076 | 1077 | which@^2.0.1: 1078 | version "2.0.2" 1079 | resolved "https://registry.npmjs.org/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1080 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1081 | dependencies: 1082 | isexe "^2.0.0" 1083 | 1084 | wrap-ansi@^7.0.0: 1085 | version "7.0.0" 1086 | resolved "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1087 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1088 | dependencies: 1089 | ansi-styles "^4.0.0" 1090 | string-width "^4.1.0" 1091 | strip-ansi "^6.0.0" 1092 | 1093 | wrappy@1: 1094 | version "1.0.2" 1095 | resolved "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1096 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1097 | 1098 | y18n@^5.0.5: 1099 | version "5.0.5" 1100 | resolved "https://registry.npmjs.org/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18" 1101 | integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg== 1102 | 1103 | yargs-parser@^20.0.0, yargs-parser@^20.2.2: 1104 | version "20.2.4" 1105 | resolved "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 1106 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 1107 | 1108 | yargs@^16.0.0: 1109 | version "16.2.0" 1110 | resolved "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 1111 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 1112 | dependencies: 1113 | cliui "^7.0.2" 1114 | escalade "^3.1.1" 1115 | get-caller-file "^2.0.5" 1116 | require-directory "^2.1.1" 1117 | string-width "^4.2.0" 1118 | y18n "^5.0.5" 1119 | yargs-parser "^20.2.2" 1120 | 1121 | yocto-queue@^0.1.0: 1122 | version "0.1.0" 1123 | resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1124 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1125 | --------------------------------------------------------------------------------