mirror of
				https://github.com/mermaid-js/mermaid.git
				synced 2025-11-04 12:54:08 +01:00 
			
		
		
		
	tsConversion: fix paths, add d.ts to output
This commit is contained in:
		@@ -1,5 +1,4 @@
 | 
				
			|||||||
import path from 'path';
 | 
					import path from 'path';
 | 
				
			||||||
const { TsConfigPathsPlugin } = require('awesome-typescript-loader');
 | 
					 | 
				
			||||||
export const resolveRoot = (...relativePath) => path.resolve(__dirname, '..', ...relativePath);
 | 
					export const resolveRoot = (...relativePath) => path.resolve(__dirname, '..', ...relativePath);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export default {
 | 
					export default {
 | 
				
			||||||
@@ -14,7 +13,6 @@ export default {
 | 
				
			|||||||
      fs: false, // jison generated code requires 'fs'
 | 
					      fs: false, // jison generated code requires 'fs'
 | 
				
			||||||
      path: require.resolve('path-browserify'),
 | 
					      path: require.resolve('path-browserify'),
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    plugins: [new TsConfigPathsPlugin()],
 | 
					 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
  output: {
 | 
					  output: {
 | 
				
			||||||
    path: resolveRoot('./dist'),
 | 
					    path: resolveRoot('./dist'),
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -58,10 +58,18 @@ Theme , the CSS style sheet
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
## logLevel
 | 
					## logLevel
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| Parameter | Description                                           | Type             | Required | Values                                             |
 | 
					| Parameter | Description                                           | Type             | Required | Values                                        |
 | 
				
			||||||
| --------- | ----------------------------------------------------- | ---------------- | -------- | -------------------------------------------------- |
 | 
					| --------- | ----------------------------------------------------- | ---------------- | -------- | --------------------------------------------- |
 | 
				
			||||||
| logLevel  | This option decides the amount of logging to be used. | string \| number | Required | 'trace', 'debug', 'info', 'warn', 'error', 'fatal' |
 | 
					| logLevel  | This option decides the amount of logging to be used. | string \| number | Required | 'trace','debug','info','warn','error','fatal' |
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					**Notes:**
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					-   Trace: 0
 | 
				
			||||||
 | 
					-   Debug: 1
 | 
				
			||||||
 | 
					-   Info: 2
 | 
				
			||||||
 | 
					-   Warn: 3
 | 
				
			||||||
 | 
					-   Error: 4
 | 
				
			||||||
 | 
					-   Fatal: 5 (default)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## securityLevel
 | 
					## securityLevel
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1418,7 +1426,7 @@ function _Default value: At default, will mirror Global Config_
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
### Parameters
 | 
					### Parameters
 | 
				
			||||||
 | 
					
 | 
				
			||||||
-   `conf`  The base currentConfig to use as siteConfig
 | 
					-   `conf` **MermaidConfig** The base currentConfig to use as siteConfig
 | 
				
			||||||
 | 
					
 | 
				
			||||||
Returns **[object][5]** The siteConfig
 | 
					Returns **[object][5]** The siteConfig
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@@ -1531,6 +1539,8 @@ Pushes in a directive to the configuration
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
**Notes**: (default: current siteConfig ) (optional, default `getSiteConfig()`)
 | 
					**Notes**: (default: current siteConfig ) (optional, default `getSiteConfig()`)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					Returns **void** 
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## updateRendererConfigs
 | 
					## updateRendererConfigs
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Parameters
 | 
					### Parameters
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										15
									
								
								package.json
									
									
									
									
									
								
							
							
						
						
									
										15
									
								
								package.json
									
									
									
									
									
								
							@@ -4,10 +4,12 @@
 | 
				
			|||||||
  "description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
 | 
					  "description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
 | 
				
			||||||
  "main": "dist/mermaid.min.js",
 | 
					  "main": "dist/mermaid.min.js",
 | 
				
			||||||
  "module": "dist/mermaid.esm.min.mjs",
 | 
					  "module": "dist/mermaid.esm.min.mjs",
 | 
				
			||||||
 | 
					  "types": "dist/mermaid.d.ts",
 | 
				
			||||||
  "exports": {
 | 
					  "exports": {
 | 
				
			||||||
    ".": {
 | 
					    ".": {
 | 
				
			||||||
      "require": "./dist/mermaid.min.js",
 | 
					      "require": "./dist/mermaid.min.js",
 | 
				
			||||||
      "import": "./dist/mermaid.esm.min.mjs"
 | 
					      "import": "./dist/mermaid.esm.min.mjs",
 | 
				
			||||||
 | 
					      "types": "./dist/mermaid.d.ts"
 | 
				
			||||||
    },
 | 
					    },
 | 
				
			||||||
    "./*": "./*"
 | 
					    "./*": "./*"
 | 
				
			||||||
  },
 | 
					  },
 | 
				
			||||||
@@ -21,11 +23,11 @@
 | 
				
			|||||||
    "git graph"
 | 
					    "git graph"
 | 
				
			||||||
  ],
 | 
					  ],
 | 
				
			||||||
  "scripts": {
 | 
					  "scripts": {
 | 
				
			||||||
    "build:development": "webpack --mode development --progress --color",
 | 
					    "build:dev": "webpack --mode development --progress --color",
 | 
				
			||||||
    "build:production": "webpack --mode production --progress --color",
 | 
					    "build:prod": "webpack --mode production --progress --color",
 | 
				
			||||||
    "build": "concurrently \"yarn build:development\" \"yarn build:production\"",
 | 
					    "build": "concurrently \"yarn build:dev\" \"yarn build:prod\"",
 | 
				
			||||||
    "postbuild": "documentation build src/mermaidAPI.js src/config.js src/defaultConfig.js --shallow -f md --markdown-toc false > docs/Setup.md",
 | 
					    "postbuild": "documentation build src/mermaidAPI.js src/config.ts src/defaultConfig.ts --shallow -f md --markdown-toc false > docs/Setup.md",
 | 
				
			||||||
    "build:watch": "yarn build:development --watch",
 | 
					    "build:watch": "yarn build:dev --watch",
 | 
				
			||||||
    "release": "yarn build",
 | 
					    "release": "yarn build",
 | 
				
			||||||
    "lint": "eslint ./ --ext .js,.json,.html",
 | 
					    "lint": "eslint ./ --ext .js,.json,.html",
 | 
				
			||||||
    "lint:fix": "yarn lint --fix",
 | 
					    "lint:fix": "yarn lint --fix",
 | 
				
			||||||
@@ -80,7 +82,6 @@
 | 
				
			|||||||
    "@types/d3": "^7.4.0",
 | 
					    "@types/d3": "^7.4.0",
 | 
				
			||||||
    "@types/dompurify": "^2.3.3",
 | 
					    "@types/dompurify": "^2.3.3",
 | 
				
			||||||
    "@types/jest": "^28.1.7",
 | 
					    "@types/jest": "^28.1.7",
 | 
				
			||||||
    "awesome-typescript-loader": "^5.2.1",
 | 
					 | 
				
			||||||
    "babel-jest": "^28.0.3",
 | 
					    "babel-jest": "^28.0.3",
 | 
				
			||||||
    "babel-loader": "^8.2.2",
 | 
					    "babel-loader": "^8.2.2",
 | 
				
			||||||
    "concurrently": "^7.0.0",
 | 
					    "concurrently": "^7.0.0",
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										1
									
								
								src/@types/types.d.ts
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										1
									
								
								src/@types/types.d.ts
									
									
									
									
										vendored
									
									
								
							@@ -1 +0,0 @@
 | 
				
			|||||||
type DiagramDetector = (text: string) => boolean;
 | 
					 | 
				
			||||||
@@ -2,7 +2,7 @@ import assignWithDepth from './assignWithDepth';
 | 
				
			|||||||
import { log } from './logger';
 | 
					import { log } from './logger';
 | 
				
			||||||
import theme from './themes';
 | 
					import theme from './themes';
 | 
				
			||||||
import config from './defaultConfig';
 | 
					import config from './defaultConfig';
 | 
				
			||||||
import { MermaidConfig } from 'types/config';
 | 
					import type { MermaidConfig } from './config.type';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const defaultConfig: MermaidConfig = Object.freeze(config);
 | 
					export const defaultConfig: MermaidConfig = Object.freeze(config);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,7 +32,7 @@ export interface MermaidConfig {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// TODO: More configs needs to be moved in here
 | 
					// TODO: More configs needs to be moved in here
 | 
				
			||||||
export interface BaseDiagramConfig extends BaseDiagramConfig {
 | 
					export interface BaseDiagramConfig {
 | 
				
			||||||
  useWidth?: number;
 | 
					  useWidth?: number;
 | 
				
			||||||
  useMaxWidth?: boolean;
 | 
					  useMaxWidth?: boolean;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
@@ -340,4 +340,7 @@ export interface FontConfig {
 | 
				
			|||||||
  fontFamily?: string;
 | 
					  fontFamily?: string;
 | 
				
			||||||
  fontWeight?: string | number;
 | 
					  fontWeight?: string | number;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export type FontCalculator = () => Partial<FontConfig>;
 | 
					export type FontCalculator = () => Partial<FontConfig>;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export {};
 | 
				
			||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
import theme from './themes';
 | 
					import theme from './themes';
 | 
				
			||||||
import { MermaidConfig } from 'types/config';
 | 
					import { MermaidConfig } from './config.type';
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * **Configuration methods in Mermaid version 8.6.0 have been updated, to learn more[[click
 | 
					 * **Configuration methods in Mermaid version 8.6.0 have been updated, to learn more[[click
 | 
				
			||||||
 * here](8.6.0_docs.md)].**
 | 
					 * here](8.6.0_docs.md)].**
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,4 +1,6 @@
 | 
				
			|||||||
import type { MermaidConfig } from 'types/config';
 | 
					import { MermaidConfig } from '../config.type';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					export type DiagramDetector = (text: string) => boolean;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
const directive =
 | 
					const directive =
 | 
				
			||||||
  /[%]{2}[{]\s*(?:(?:(\w+)\s*:|(\w+))\s*(?:(?:(\w+))|((?:(?![}][%]{2}).|\r?\n)*))?\s*)(?:[}][%]{2})?/gi;
 | 
					  /[%]{2}[{]\s*(?:(?:(\w+)\s*:|(\w+))\s*(?:(?:(\w+))|((?:(?![}][%]{2}).|\r?\n)*))?\s*)(?:[}][%]{2})?/gi;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,5 +1,5 @@
 | 
				
			|||||||
import DOMPurify from 'dompurify';
 | 
					import DOMPurify from 'dompurify';
 | 
				
			||||||
import { MermaidConfig } from 'types/config';
 | 
					import { MermaidConfig } from '../../config.type';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/**
 | 
					/**
 | 
				
			||||||
 * Gets the rows of lines in a string
 | 
					 * Gets the rows of lines in a string
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,5 @@
 | 
				
			|||||||
 | 
					import type { DiagramDetector } from '../../diagram-api/detectType';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const gitGraphDetector: DiagramDetector = (txt) => {
 | 
					export const gitGraphDetector: DiagramDetector = (txt) => {
 | 
				
			||||||
  return txt.match(/^\s*gitGraph/) != null;
 | 
					  return txt.match(/^\s*gitGraph/) != null;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,3 +1,5 @@
 | 
				
			|||||||
 | 
					import { DiagramDetector } from '../../diagram-api/detectType';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
export const mindmapDetector: DiagramDetector = (txt) => {
 | 
					export const mindmapDetector: DiagramDetector = (txt) => {
 | 
				
			||||||
  return txt.match(/^\s*mindmap/) != null;
 | 
					  return txt.match(/^\s*mindmap/) != null;
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -2,7 +2,7 @@
 | 
				
			|||||||
 * Web page integration module for the mermaid framework. It uses the mermaidAPI for mermaid
 | 
					 * Web page integration module for the mermaid framework. It uses the mermaidAPI for mermaid
 | 
				
			||||||
 * functionality and to render the diagrams to svg code.
 | 
					 * functionality and to render the diagrams to svg code.
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
import { MermaidConfig } from 'types/config';
 | 
					import { MermaidConfig } from './config.type';
 | 
				
			||||||
import { log } from './logger';
 | 
					import { log } from './logger';
 | 
				
			||||||
import mermaidAPI from './mermaidAPI';
 | 
					import mermaidAPI from './mermaidAPI';
 | 
				
			||||||
import utils from './utils';
 | 
					import utils from './utils';
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -19,7 +19,7 @@ import { configKeys } from './defaultConfig';
 | 
				
			|||||||
import { log } from './logger';
 | 
					import { log } from './logger';
 | 
				
			||||||
import { detectType } from './diagram-api/detectType';
 | 
					import { detectType } from './diagram-api/detectType';
 | 
				
			||||||
import assignWithDepth from './assignWithDepth';
 | 
					import assignWithDepth from './assignWithDepth';
 | 
				
			||||||
import { MermaidConfig } from 'types/config';
 | 
					import { MermaidConfig } from './config.type';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Effectively an enum of the supported curve types, accessible by name
 | 
					// Effectively an enum of the supported curve types, accessible by name
 | 
				
			||||||
const d3CurveTypes = {
 | 
					const d3CurveTypes = {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,17 +27,12 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
    /* Modules */
 | 
					    /* Modules */
 | 
				
			||||||
    "module": "ES6" /* Specify what module code is generated. */,
 | 
					    "module": "ES6" /* Specify what module code is generated. */,
 | 
				
			||||||
    // "rootDir": "./",                                  /* Specify the root folder within your source files. */
 | 
					    "rootDir": "./src" /* Specify the root folder within your source files. */,
 | 
				
			||||||
    "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
 | 
					    "moduleResolution": "node" /* Specify how TypeScript looks up a file from a given module specifier. */,
 | 
				
			||||||
    "baseUrl": "./src" /* Specify the base directory to resolve non-relative module names. */,
 | 
					    // "baseUrl": "./src" /* Specify the base directory to resolve non-relative module names. */,
 | 
				
			||||||
    "paths": {
 | 
					    // "paths": {} /* Specify a set of entries that re-map imports to additional lookup locations. */,
 | 
				
			||||||
      "types/*": ["@types/*"]
 | 
					 | 
				
			||||||
    } /* Specify a set of entries that re-map imports to additional lookup locations. */,
 | 
					 | 
				
			||||||
    // "rootDirs": [],                                   /* Allow multiple folders to be treated as one when resolving modules. */
 | 
					    // "rootDirs": [],                                   /* Allow multiple folders to be treated as one when resolving modules. */
 | 
				
			||||||
    "typeRoots": [
 | 
					    // "typeRoots": [] /* Specify multiple folders that act like `./node_modules/@types`. */,
 | 
				
			||||||
      "./node_modules/@types",
 | 
					 | 
				
			||||||
      "./src/@types"
 | 
					 | 
				
			||||||
    ] /* Specify multiple folders that act like `./node_modules/@types`. */,
 | 
					 | 
				
			||||||
    // "types": [],                                      /* Specify type package names to be included without being referenced in a source file. */
 | 
					    // "types": [],                                      /* Specify type package names to be included without being referenced in a source file. */
 | 
				
			||||||
    // "allowUmdGlobalAccess": true,                     /* Allow accessing UMD globals from modules. */
 | 
					    // "allowUmdGlobalAccess": true,                     /* Allow accessing UMD globals from modules. */
 | 
				
			||||||
    // "resolveJsonModule": true,                        /* Enable importing .json files */
 | 
					    // "resolveJsonModule": true,                        /* Enable importing .json files */
 | 
				
			||||||
@@ -49,7 +44,7 @@
 | 
				
			|||||||
    // "maxNodeModuleJsDepth": 1,                        /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
 | 
					    // "maxNodeModuleJsDepth": 1,                        /* Specify the maximum folder depth used for checking JavaScript files from `node_modules`. Only applicable with `allowJs`. */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    /* Emit */
 | 
					    /* Emit */
 | 
				
			||||||
    // "declaration": true,                              /* Generate .d.ts files from TypeScript and JavaScript files in your project. */
 | 
					    "declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
 | 
				
			||||||
    // "declarationMap": true,                           /* Create sourcemaps for d.ts files. */
 | 
					    // "declarationMap": true,                           /* Create sourcemaps for d.ts files. */
 | 
				
			||||||
    // "emitDeclarationOnly": true,                      /* Only output d.ts files and not JavaScript files. */
 | 
					    // "emitDeclarationOnly": true,                      /* Only output d.ts files and not JavaScript files. */
 | 
				
			||||||
    // "sourceMap": true,                                /* Create source map files for emitted JavaScript files. */
 | 
					    // "sourceMap": true,                                /* Create source map files for emitted JavaScript files. */
 | 
				
			||||||
@@ -104,5 +99,6 @@
 | 
				
			|||||||
    /* Completeness */
 | 
					    /* Completeness */
 | 
				
			||||||
    // "skipDefaultLibCheck": true,                      /* Skip type checking .d.ts files that are included with TypeScript. */
 | 
					    // "skipDefaultLibCheck": true,                      /* Skip type checking .d.ts files that are included with TypeScript. */
 | 
				
			||||||
    "skipLibCheck": true /* Skip type checking all .d.ts files. */
 | 
					    "skipLibCheck": true /* Skip type checking all .d.ts files. */
 | 
				
			||||||
  }
 | 
					  },
 | 
				
			||||||
 | 
					  "include": ["./src/**/*.ts"]
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										157
									
								
								yarn.lock
									
									
									
									
									
								
							
							
						
						
									
										157
									
								
								yarn.lock
									
									
									
									
									
								
							@@ -3326,20 +3326,6 @@ atob@^2.1.2:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
 | 
					  resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9"
 | 
				
			||||||
  integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
 | 
					  integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
awesome-typescript-loader@^5.2.1:
 | 
					 | 
				
			||||||
  version "5.2.1"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/awesome-typescript-loader/-/awesome-typescript-loader-5.2.1.tgz#a41daf7847515f4925cdbaa3075d61f289e913fc"
 | 
					 | 
				
			||||||
  integrity sha512-slv66OAJB8orL+UUaTI3pKlLorwIvS4ARZzYR9iJJyGsEgOqueMfOMdKySWzZ73vIkEe3fcwFgsKMg4d8zyb1g==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    chalk "^2.4.1"
 | 
					 | 
				
			||||||
    enhanced-resolve "^4.0.0"
 | 
					 | 
				
			||||||
    loader-utils "^1.1.0"
 | 
					 | 
				
			||||||
    lodash "^4.17.5"
 | 
					 | 
				
			||||||
    micromatch "^3.1.9"
 | 
					 | 
				
			||||||
    mkdirp "^0.5.1"
 | 
					 | 
				
			||||||
    source-map-support "^0.5.3"
 | 
					 | 
				
			||||||
    webpack-log "^1.2.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
aws-sign2@~0.7.0:
 | 
					aws-sign2@~0.7.0:
 | 
				
			||||||
  version "0.7.0"
 | 
					  version "0.7.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
 | 
					  resolved "https://registry.yarnpkg.com/aws-sign2/-/aws-sign2-0.7.0.tgz#b46e890934a9591f2d2f6f86d7e6a9f1b3fe76a8"
 | 
				
			||||||
@@ -3803,7 +3789,7 @@ chalk@^1.1.3:
 | 
				
			|||||||
    strip-ansi "^3.0.0"
 | 
					    strip-ansi "^3.0.0"
 | 
				
			||||||
    supports-color "^2.0.0"
 | 
					    supports-color "^2.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2:
 | 
					chalk@^2.0.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2:
 | 
				
			||||||
  version "2.4.2"
 | 
					  version "2.4.2"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
 | 
					  resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
 | 
				
			||||||
  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
 | 
					  integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
 | 
				
			||||||
@@ -4822,14 +4808,6 @@ d3@^5.14, d3@^7.0.0:
 | 
				
			|||||||
    d3-transition "3"
 | 
					    d3-transition "3"
 | 
				
			||||||
    d3-zoom "3"
 | 
					    d3-zoom "3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
d@1, d@^1.0.1:
 | 
					 | 
				
			||||||
  version "1.0.1"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/d/-/d-1.0.1.tgz#8698095372d58dbee346ffd0c7093f99f8f9eb5a"
 | 
					 | 
				
			||||||
  integrity sha512-m62ShEObQ39CfralilEQRjH6oAMtNCV1xJyEx5LpRYUVN+EviphDgUc/F3hnYbADmkiNs67Y+3ylmlG7Lnu+FA==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    es5-ext "^0.10.50"
 | 
					 | 
				
			||||||
    type "^1.0.1"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
dagre-d3@^0.6.4:
 | 
					dagre-d3@^0.6.4:
 | 
				
			||||||
  version "0.6.4"
 | 
					  version "0.6.4"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/dagre-d3/-/dagre-d3-0.6.4.tgz#0728d5ce7f177ca2337df141ceb60fbe6eeb7b29"
 | 
					  resolved "https://registry.yarnpkg.com/dagre-d3/-/dagre-d3-0.6.4.tgz#0728d5ce7f177ca2337df141ceb60fbe6eeb7b29"
 | 
				
			||||||
@@ -5362,15 +5340,6 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0:
 | 
				
			|||||||
  dependencies:
 | 
					  dependencies:
 | 
				
			||||||
    once "^1.4.0"
 | 
					    once "^1.4.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
enhanced-resolve@^4.0.0:
 | 
					 | 
				
			||||||
  version "4.5.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz#2f3cfd84dbe3b487f18f2db2ef1e064a571ca5ec"
 | 
					 | 
				
			||||||
  integrity sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    graceful-fs "^4.1.2"
 | 
					 | 
				
			||||||
    memory-fs "^0.5.0"
 | 
					 | 
				
			||||||
    tapable "^1.0.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
enhanced-resolve@^5.0.0, enhanced-resolve@^5.10.0:
 | 
					enhanced-resolve@^5.0.0, enhanced-resolve@^5.10.0:
 | 
				
			||||||
  version "5.10.0"
 | 
					  version "5.10.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6"
 | 
					  resolved "https://registry.yarnpkg.com/enhanced-resolve/-/enhanced-resolve-5.10.0.tgz#0dc579c3bb2a1032e357ac45b8f3a6f3ad4fb1e6"
 | 
				
			||||||
@@ -5396,13 +5365,6 @@ envinfo@^7.7.3:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
 | 
					  resolved "https://registry.yarnpkg.com/envinfo/-/envinfo-7.8.1.tgz#06377e3e5f4d379fea7ac592d5ad8927e0c4d475"
 | 
				
			||||||
  integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
 | 
					  integrity sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
errno@^0.1.3:
 | 
					 | 
				
			||||||
  version "0.1.8"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/errno/-/errno-0.1.8.tgz#8bb3e9c7d463be4976ff888f76b4809ebc2e811f"
 | 
					 | 
				
			||||||
  integrity sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    prr "~1.0.1"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
error-ex@^1.3.1:
 | 
					error-ex@^1.3.1:
 | 
				
			||||||
  version "1.3.2"
 | 
					  version "1.3.2"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
 | 
					  resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf"
 | 
				
			||||||
@@ -5422,32 +5384,6 @@ es-module-lexer@^0.9.0:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
 | 
					  resolved "https://registry.yarnpkg.com/es-module-lexer/-/es-module-lexer-0.9.3.tgz#6f13db00cc38417137daf74366f535c8eb438f19"
 | 
				
			||||||
  integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
 | 
					  integrity sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
es5-ext@^0.10.35, es5-ext@^0.10.50:
 | 
					 | 
				
			||||||
  version "0.10.62"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/es5-ext/-/es5-ext-0.10.62.tgz#5e6adc19a6da524bf3d1e02bbc8960e5eb49a9a5"
 | 
					 | 
				
			||||||
  integrity sha512-BHLqn0klhEpnOKSrzn/Xsz2UIW8j+cGmo9JLzr8BiUapV8hPL9+FliFqjwr9ngW7jWdnxv6eO+/LqyhJVqgrjA==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    es6-iterator "^2.0.3"
 | 
					 | 
				
			||||||
    es6-symbol "^3.1.3"
 | 
					 | 
				
			||||||
    next-tick "^1.1.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
es6-iterator@^2.0.3:
 | 
					 | 
				
			||||||
  version "2.0.3"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/es6-iterator/-/es6-iterator-2.0.3.tgz#a7de889141a05a94b0854403b2d0a0fbfa98f3b7"
 | 
					 | 
				
			||||||
  integrity sha512-zw4SRzoUkd+cl+ZoE15A9o1oQd920Bb0iOJMQkQhl3jNc03YqVjAhG7scf9C5KWRU/R13Orf588uCC6525o02g==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    d "1"
 | 
					 | 
				
			||||||
    es5-ext "^0.10.35"
 | 
					 | 
				
			||||||
    es6-symbol "^3.1.1"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
es6-symbol@^3.1.1, es6-symbol@^3.1.3:
 | 
					 | 
				
			||||||
  version "3.1.3"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/es6-symbol/-/es6-symbol-3.1.3.tgz#bad5d3c1bcdac28269f4cb331e431c78ac705d18"
 | 
					 | 
				
			||||||
  integrity sha512-NJ6Yn3FuDinBaBRWl/q5X/s4koRHBrgKAu+yGI6JCBeiu3qrcbJhwT2GeR/EXVfylRk8dpQVJoLEFhK+Mu31NA==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    d "^1.0.1"
 | 
					 | 
				
			||||||
    ext "^1.1.2"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
escalade@^3.1.1:
 | 
					escalade@^3.1.1:
 | 
				
			||||||
  version "3.1.1"
 | 
					  version "3.1.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
 | 
					  resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40"
 | 
				
			||||||
@@ -5873,13 +5809,6 @@ express@^4.17.3:
 | 
				
			|||||||
    utils-merge "1.0.1"
 | 
					    utils-merge "1.0.1"
 | 
				
			||||||
    vary "~1.1.2"
 | 
					    vary "~1.1.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
ext@^1.1.2:
 | 
					 | 
				
			||||||
  version "1.6.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/ext/-/ext-1.6.0.tgz#3871d50641e874cc172e2b53f919842d19db4c52"
 | 
					 | 
				
			||||||
  integrity sha512-sdBImtzkq2HpkdRLtlLWDa6w4DX22ijZLKx8BMPUuKe1c5lbN6xwQDQCxSfxBQnHZ13ls/FH0MQZx/q/gr6FQg==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    type "^2.5.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
extend-shallow@^2.0.1:
 | 
					extend-shallow@^2.0.1:
 | 
				
			||||||
  version "2.0.1"
 | 
					  version "2.0.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
 | 
					  resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
 | 
				
			||||||
@@ -7974,13 +7903,6 @@ json5@^0.5.0:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
 | 
					  resolved "https://registry.yarnpkg.com/json5/-/json5-0.5.1.tgz#1eade7acc012034ad84e2396767ead9fa5495821"
 | 
				
			||||||
  integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
 | 
					  integrity sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
json5@^1.0.1:
 | 
					 | 
				
			||||||
  version "1.0.1"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.1.tgz#779fb0018604fa854eacbf6252180d83543e3dbe"
 | 
					 | 
				
			||||||
  integrity sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    minimist "^1.2.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
json5@^2.1.2, json5@^2.2.1:
 | 
					json5@^2.1.2, json5@^2.2.1:
 | 
				
			||||||
  version "2.2.1"
 | 
					  version "2.2.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
 | 
					  resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.1.tgz#655d50ed1e6f95ad1a3caababd2b0efda10b395c"
 | 
				
			||||||
@@ -8237,15 +8159,6 @@ loader-utils@^0.2.15:
 | 
				
			|||||||
    json5 "^0.5.0"
 | 
					    json5 "^0.5.0"
 | 
				
			||||||
    object-assign "^4.0.1"
 | 
					    object-assign "^4.0.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
loader-utils@^1.1.0:
 | 
					 | 
				
			||||||
  version "1.4.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.4.0.tgz#c579b5e34cb34b1a74edc6c1fb36bfa371d5a613"
 | 
					 | 
				
			||||||
  integrity sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    big.js "^5.2.2"
 | 
					 | 
				
			||||||
    emojis-list "^3.0.0"
 | 
					 | 
				
			||||||
    json5 "^1.0.1"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
loader-utils@^2.0.0:
 | 
					loader-utils@^2.0.0:
 | 
				
			||||||
  version "2.0.2"
 | 
					  version "2.0.2"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129"
 | 
					  resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-2.0.2.tgz#d6e3b4fb81870721ae4e0868ab11dd638368c129"
 | 
				
			||||||
@@ -8310,7 +8223,7 @@ lodash.once@^4.1.1:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
 | 
					  resolved "https://registry.yarnpkg.com/lodash.once/-/lodash.once-4.1.1.tgz#0dd3971213c7c56df880977d504c88fb471a97ac"
 | 
				
			||||||
  integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
 | 
					  integrity sha1-DdOXEhPHxW34gJd9UEyI+0cal6w=
 | 
				
			||||||
 | 
					
 | 
				
			||||||
lodash@^4.17.10, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.17.4, lodash@^4.17.5:
 | 
					lodash@^4.17.10, lodash@^4.17.15, lodash@^4.17.19, lodash@^4.17.21, lodash@^4.17.4:
 | 
				
			||||||
  version "4.17.21"
 | 
					  version "4.17.21"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
 | 
					  resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
 | 
				
			||||||
  integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
 | 
					  integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
 | 
				
			||||||
@@ -8320,13 +8233,6 @@ log-driver@^1.2.7:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
 | 
					  resolved "https://registry.yarnpkg.com/log-driver/-/log-driver-1.2.7.tgz#63b95021f0702fedfa2c9bb0a24e7797d71871d8"
 | 
				
			||||||
  integrity sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==
 | 
					  integrity sha512-U7KCmLdqsGHBLeWqYlFA0V0Sl6P08EE1ZrmA9cxjUE0WVqT9qnyVDPz1kzpFEP0jdJuFnasWIfSd7fsaNXkpbg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
log-symbols@^2.1.0:
 | 
					 | 
				
			||||||
  version "2.2.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-2.2.0.tgz#5740e1c5d6f0dfda4ad9323b5332107ef6b4c40a"
 | 
					 | 
				
			||||||
  integrity sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    chalk "^2.0.1"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
log-symbols@^4.0.0:
 | 
					log-symbols@^4.0.0:
 | 
				
			||||||
  version "4.1.0"
 | 
					  version "4.1.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
 | 
					  resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.1.0.tgz#3fbdbb95b4683ac9fc785111e792e558d4abd503"
 | 
				
			||||||
@@ -8355,14 +8261,6 @@ loglevel@^1.6.0:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.0.tgz#e7ec73a57e1e7b419cb6c6ac06bf050b67356114"
 | 
					  resolved "https://registry.yarnpkg.com/loglevel/-/loglevel-1.8.0.tgz#e7ec73a57e1e7b419cb6c6ac06bf050b67356114"
 | 
				
			||||||
  integrity sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==
 | 
					  integrity sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
loglevelnext@^1.0.1:
 | 
					 | 
				
			||||||
  version "1.0.5"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/loglevelnext/-/loglevelnext-1.0.5.tgz#36fc4f5996d6640f539ff203ba819641680d75a2"
 | 
					 | 
				
			||||||
  integrity sha512-V/73qkPuJmx4BcBF19xPBr+0ZRVBhc4POxvZTZdMeXpJ4NItXSJ/MSwuFT0kQJlCbXvdlZoQQ/418bS1y9Jh6A==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    es6-symbol "^3.1.1"
 | 
					 | 
				
			||||||
    object.assign "^4.1.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
longest-streak@^2.0.1:
 | 
					longest-streak@^2.0.1:
 | 
				
			||||||
  version "2.0.4"
 | 
					  version "2.0.4"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4"
 | 
					  resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.4.tgz#b8599957da5b5dab64dee3fe316fa774597d90e4"
 | 
				
			||||||
@@ -8565,14 +8463,6 @@ memfs@^3.4.1:
 | 
				
			|||||||
  dependencies:
 | 
					  dependencies:
 | 
				
			||||||
    fs-monkey "1.0.3"
 | 
					    fs-monkey "1.0.3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
memory-fs@^0.5.0:
 | 
					 | 
				
			||||||
  version "0.5.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/memory-fs/-/memory-fs-0.5.0.tgz#324c01288b88652966d161db77838720845a8e3c"
 | 
					 | 
				
			||||||
  integrity sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    errno "^0.1.3"
 | 
					 | 
				
			||||||
    readable-stream "^2.0.1"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
meow@^8.0.0:
 | 
					meow@^8.0.0:
 | 
				
			||||||
  version "8.1.2"
 | 
					  version "8.1.2"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
 | 
					  resolved "https://registry.yarnpkg.com/meow/-/meow-8.1.2.tgz#bcbe45bda0ee1729d350c03cffc8395a36c4e897"
 | 
				
			||||||
@@ -8813,7 +8703,7 @@ micromark@~2.11.0:
 | 
				
			|||||||
    debug "^4.0.0"
 | 
					    debug "^4.0.0"
 | 
				
			||||||
    parse-entities "^2.0.0"
 | 
					    parse-entities "^2.0.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
micromatch@^3.1.5, micromatch@^3.1.9:
 | 
					micromatch@^3.1.5:
 | 
				
			||||||
  version "3.1.10"
 | 
					  version "3.1.10"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
 | 
					  resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-3.1.10.tgz#70859bc95c9840952f359a068a3fc49f9ecfac23"
 | 
				
			||||||
  integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
 | 
					  integrity sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==
 | 
				
			||||||
@@ -8908,7 +8798,7 @@ minimist-options@4.1.0:
 | 
				
			|||||||
    is-plain-obj "^1.1.0"
 | 
					    is-plain-obj "^1.1.0"
 | 
				
			||||||
    kind-of "^6.0.3"
 | 
					    kind-of "^6.0.3"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.0, minimist@^1.2.5, minimist@^1.2.6:
 | 
					minimist@^1.1.0, minimist@^1.1.1, minimist@^1.2.5, minimist@^1.2.6:
 | 
				
			||||||
  version "1.2.6"
 | 
					  version "1.2.6"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
 | 
					  resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.6.tgz#8637a5b759ea0d6e98702cfb3a9283323c93af44"
 | 
				
			||||||
  integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
 | 
					  integrity sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==
 | 
				
			||||||
@@ -9030,11 +8920,6 @@ netmask@^2.0.1:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7"
 | 
					  resolved "https://registry.yarnpkg.com/netmask/-/netmask-2.0.2.tgz#8b01a07644065d536383835823bc52004ebac5e7"
 | 
				
			||||||
  integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==
 | 
					  integrity sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
next-tick@^1.1.0:
 | 
					 | 
				
			||||||
  version "1.1.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.1.0.tgz#1836ee30ad56d67ef281b22bd199f709449b35eb"
 | 
					 | 
				
			||||||
  integrity sha512-CXdUiJembsNjuToQvxayPZF9Vqht7hewsvy2sOWafLvi2awflj9mOC6bHIg50orX8IJvWKY9wYQ/zB2kogPslQ==
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
nice-try@^1.0.4:
 | 
					nice-try@^1.0.4:
 | 
				
			||||||
  version "1.0.5"
 | 
					  version "1.0.5"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
 | 
					  resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
 | 
				
			||||||
@@ -9798,11 +9683,6 @@ proxy-from-env@^1.0.0:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
 | 
					  resolved "https://registry.yarnpkg.com/proxy-from-env/-/proxy-from-env-1.1.0.tgz#e102f16ca355424865755d2c9e8ea4f24d58c3e2"
 | 
				
			||||||
  integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
 | 
					  integrity sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
prr@~1.0.1:
 | 
					 | 
				
			||||||
  version "1.0.1"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
 | 
					 | 
				
			||||||
  integrity sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
ps-tree@1.2.0:
 | 
					ps-tree@1.2.0:
 | 
				
			||||||
  version "1.2.0"
 | 
					  version "1.2.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd"
 | 
					  resolved "https://registry.yarnpkg.com/ps-tree/-/ps-tree-1.2.0.tgz#5e7425b89508736cdd4f2224d028f7bb3f722ebd"
 | 
				
			||||||
@@ -10782,7 +10662,7 @@ source-map-support@0.5.13:
 | 
				
			|||||||
    buffer-from "^1.0.0"
 | 
					    buffer-from "^1.0.0"
 | 
				
			||||||
    source-map "^0.6.0"
 | 
					    source-map "^0.6.0"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
source-map-support@^0.5.16, source-map-support@^0.5.3, source-map-support@~0.5.20:
 | 
					source-map-support@^0.5.16, source-map-support@~0.5.20:
 | 
				
			||||||
  version "0.5.21"
 | 
					  version "0.5.21"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
 | 
					  resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
 | 
				
			||||||
  integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
 | 
					  integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
 | 
				
			||||||
@@ -11221,11 +11101,6 @@ symbol-tree@^3.2.4:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
 | 
					  resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
 | 
				
			||||||
  integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
 | 
					  integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
tapable@^1.0.0:
 | 
					 | 
				
			||||||
  version "1.1.3"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
 | 
					 | 
				
			||||||
  integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
tapable@^2.1.1, tapable@^2.2.0:
 | 
					tapable@^2.1.1, tapable@^2.2.0:
 | 
				
			||||||
  version "2.2.1"
 | 
					  version "2.2.1"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
 | 
					  resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.2.1.tgz#1967a73ef4060a82f12ab96af86d52fdb76eeca0"
 | 
				
			||||||
@@ -11599,16 +11474,6 @@ type-is@~1.6.18:
 | 
				
			|||||||
    media-typer "0.3.0"
 | 
					    media-typer "0.3.0"
 | 
				
			||||||
    mime-types "~2.1.24"
 | 
					    mime-types "~2.1.24"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
type@^1.0.1:
 | 
					 | 
				
			||||||
  version "1.2.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/type/-/type-1.2.0.tgz#848dd7698dafa3e54a6c479e759c4bc3f18847a0"
 | 
					 | 
				
			||||||
  integrity sha512-+5nt5AAniqsCnu2cEQQdpzCAh33kVx8n0VoFidKpB1dVVLAN/F+bgVOqOJqOnEnrhp222clB5p3vUlD+1QAnfg==
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
type@^2.5.0:
 | 
					 | 
				
			||||||
  version "2.7.2"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/type/-/type-2.7.2.tgz#2376a15a3a28b1efa0f5350dcf72d24df6ef98d0"
 | 
					 | 
				
			||||||
  integrity sha512-dzlvlNlt6AXU7EBSfpAscydQ7gXB+pPGsPnfJnZpiNJBDj7IaJzQlBZYGdEi4R9HmPdBv2XmWJ6YUtoTa7lmCw==
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
typedarray@^0.0.6, typedarray@~0.0.5:
 | 
					typedarray@^0.0.6, typedarray@~0.0.5:
 | 
				
			||||||
  version "0.0.6"
 | 
					  version "0.0.6"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
 | 
					  resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
 | 
				
			||||||
@@ -11840,7 +11705,7 @@ uuid@8.3.2, uuid@^8.3.2:
 | 
				
			|||||||
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
 | 
					  resolved "https://registry.yarnpkg.com/uuid/-/uuid-8.3.2.tgz#80d5b5ced271bb9af6c445f21a1a04c606cefbe2"
 | 
				
			||||||
  integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
 | 
					  integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
 | 
				
			||||||
 | 
					
 | 
				
			||||||
uuid@^3.1.0, uuid@^3.3.2:
 | 
					uuid@^3.3.2:
 | 
				
			||||||
  version "3.4.0"
 | 
					  version "3.4.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
 | 
					  resolved "https://registry.yarnpkg.com/uuid/-/uuid-3.4.0.tgz#b23e4358afa8a202fe7a100af1f5f883f02007ee"
 | 
				
			||||||
  integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
 | 
					  integrity sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==
 | 
				
			||||||
@@ -12194,16 +12059,6 @@ webpack-dev-server@^4.3.0:
 | 
				
			|||||||
    webpack-dev-middleware "^5.3.1"
 | 
					    webpack-dev-middleware "^5.3.1"
 | 
				
			||||||
    ws "^8.4.2"
 | 
					    ws "^8.4.2"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
webpack-log@^1.2.0:
 | 
					 | 
				
			||||||
  version "1.2.0"
 | 
					 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/webpack-log/-/webpack-log-1.2.0.tgz#a4b34cda6b22b518dbb0ab32e567962d5c72a43d"
 | 
					 | 
				
			||||||
  integrity sha512-U9AnICnu50HXtiqiDxuli5gLB5PGBo7VvcHx36jRZHwK4vzOYLbImqT4lwWwoMHdQWwEKw736fCHEekokTEKHA==
 | 
					 | 
				
			||||||
  dependencies:
 | 
					 | 
				
			||||||
    chalk "^2.1.0"
 | 
					 | 
				
			||||||
    log-symbols "^2.1.0"
 | 
					 | 
				
			||||||
    loglevelnext "^1.0.1"
 | 
					 | 
				
			||||||
    uuid "^3.1.0"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
webpack-merge@^5.7.3, webpack-merge@^5.8.0:
 | 
					webpack-merge@^5.7.3, webpack-merge@^5.8.0:
 | 
				
			||||||
  version "5.8.0"
 | 
					  version "5.8.0"
 | 
				
			||||||
  resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61"
 | 
					  resolved "https://registry.yarnpkg.com/webpack-merge/-/webpack-merge-5.8.0.tgz#2b39dbf22af87776ad744c390223731d30a68f61"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user