Merge branch 'next' into pr/trongthanh/5791

# Conflicts:
#	yarn.lock
This commit is contained in:
Norbert de Langen 2019-05-20 21:50:33 +02:00
commit 3ae3bca1a6
30 changed files with 974 additions and 227 deletions

View File

@ -39,6 +39,30 @@ module.exports = {
'html/html-extensions': ['.html'],
},
rules: {
'no-restricted-imports': [
error,
{
paths: [
{
name: 'lodash.isequal',
message:
'Lodash modularised (and lodash < 4.17.11) have CVE vulnerabilities. Please use tree-shakeable imports like lodash/xxx instead',
},
{
name: 'lodash.mergewith',
message:
'Lodash modularised (and lodash < 4.17.11) have CVE vulnerabilities. Please use tree-shakeable imports like lodash/xxx instead',
},
{
name: 'lodash.pick',
message:
'Lodash modularised (and lodash < 4.17.11) have CVE vulnerabilities. Please use tree-shakeable imports like lodash/xxx instead',
},
],
// catch-all for any lodash modularised. The CVE is listed against the entire family for lodash < 4.17.11
patterns: ['lodash.*'],
},
],
'prettier/prettier': [warn],
'no-debugger': process.env.NODE_ENV === 'production' ? error : ignore,
'class-methods-use-this': ignore,

View File

@ -193,7 +193,7 @@ storiesOf('MyComponent', module)
## Contributing
Every ideas and contributions are welcomed.
All ideas and contributions are welcomed.
## Licence

View File

@ -32,7 +32,7 @@
"escape-html": "^1.0.3",
"fast-deep-equal": "^2.0.1",
"global": "^4.3.2",
"lodash.debounce": "^4.0.8",
"lodash": "^4.17.11",
"prop-types": "^15.7.2",
"qs": "^6.6.0",
"react-color": "^2.17.0",

View File

@ -9,8 +9,8 @@ const InvalidType = () => <span>Invalid Type</span>;
export default class PropForm extends Component {
makeChangeHandler(name, type) {
const { onFieldChange } = this.props;
return value => {
const change = { name, type, value: value || '' };
return (value = '') => {
const change = { name, type, value };
onFieldChange(change);
};

View File

@ -1,6 +1,6 @@
import addons from '@storybook/addons';
import { STORY_CHANGED, FORCE_RE_RENDER, REGISTER_SUBSCRIPTION } from '@storybook/core-events';
import debounce from 'lodash.debounce';
import debounce from 'lodash/debounce';
import KnobManager from './KnobManager';
import { CHANGE, CLICK, RESET, SET } from './shared';

View File

@ -23,9 +23,6 @@
"@types/enzyme": "^3.9.0",
"@types/react": "^16.8.4",
"@types/react-dom": "^16.8.2",
"@types/storybook__addon-actions": "^3.4.1",
"@types/storybook__addon-info": "^4.1.0",
"@types/storybook__react": "^4.0.0",
"enzyme": "^3.9.0",
"enzyme-adapter-react-16": "^1.9.1",
"enzyme-to-json": "^3.3.5",

View File

@ -0,0 +1,8 @@
export const addDecorator: any;
export const addParameters: any;
export const configure: any;
export const forceReRender: any;
export const getStorybook: any;
export const raw: any;
export const setAddon: any;
export const storiesOf: any;

View File

@ -1,5 +1,7 @@
{
"compilerOptions": {
"baseUrl": "src",
"paths": { "*": ["types/*"] },
"target": "es5",
"module": "esnext",
"lib" : ["esnext", "dom"],

View File

@ -1246,6 +1246,7 @@ exports[`Storyshots Addons|Info/Markdown Displays Markdown in description 1`] =
.emotion-5 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}
@ -4608,6 +4609,7 @@ exports[`Storyshots Addons|Info/Parameters Overwrite the parameters with markdow
.emotion-5 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}
@ -5256,6 +5258,7 @@ exports[`Storyshots Addons|Info/Parameters Overwrite the text parameter with mar
.emotion-5 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}
@ -9500,6 +9503,7 @@ exports[`Storyshots Addons|Info/deprecated Displays Markdown in description 1`]
.emotion-5 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}

View File

@ -28,9 +28,7 @@
"core-js": "^3.0.1",
"fast-deep-equal": "^2.0.1",
"global": "^4.3.2",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.1",
"lodash.pick": "^4.4.0",
"lodash": "^4.17.11",
"memoizerific": "^1.11.3",
"prop-types": "^15.6.2",
"react": "^16.7.0",
@ -41,9 +39,7 @@
"util-deprecate": "^1.0.2"
},
"devDependencies": {
"@types/lodash.isequal": "^4.5.3",
"@types/lodash.mergewith": "^4.6.4",
"@types/lodash.pick": "^4.4.4",
"@types/lodash": "^4.14.129",
"@types/semver": "^6.0.0"
},
"publishConfig": {

View File

@ -1,5 +1,5 @@
import mergeWith from 'lodash.mergewith';
import isEqual from 'lodash.isequal';
import mergeWith from 'lodash/mergeWith';
import isEqual from 'lodash/isEqual';
import { logger } from '@storybook/client-logger';

View File

@ -1,5 +1,5 @@
import { document } from 'global';
import pick from 'lodash.pick';
import pick from 'lodash/pick';
import deprecate from 'util-deprecate';
import deepEqual from 'fast-deep-equal';

View File

@ -8,7 +8,7 @@ rm -rfd cra-fixtures
mkdir cra-fixtures
cd cra-fixtures
npx create-react-app react-scripts-latest-fixture
npx create-react-app react-scripts-latest-fixture --use-npm
cd ..
./run_tests.sh -f cra-fixtures $@

View File

@ -29,9 +29,7 @@
"eventemitter3": "^3.1.0",
"global": "^4.3.2",
"is-plain-object": "^3.0.0",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.1",
"lodash": "^4.17.11",
"memoizerific": "^1.11.3",
"qs": "^6.6.0"
},

View File

@ -6,8 +6,8 @@ import addons from '@storybook/addons';
import Events from '@storybook/core-events';
import { toId } from '@storybook/router/utils';
import mergeWith from 'lodash.mergewith';
import isEqual from 'lodash.isequal';
import mergeWith from 'lodash/mergeWith';
import isEqual from 'lodash/isEqual';
import subscriptionsStore from './subscriptions_store';

View File

@ -3,7 +3,7 @@ import { history, document } from 'global';
import qs from 'qs';
import EventEmitter from 'eventemitter3';
import memoize from 'memoizerific';
import debounce from 'lodash.debounce';
import debounce from 'lodash/debounce';
import { stripIndents } from 'common-tags';
import Events from '@storybook/core-events';

View File

@ -25,7 +25,6 @@
"@storybook/theming": "5.1.0-beta.1",
"core-js": "^3.0.1",
"global": "^4.3.2",
"js-beautify": "^1.8.9",
"markdown-to-jsx": "^6.9.1",
"memoizerific": "^1.11.3",
"polished": "^3.3.1",
@ -42,7 +41,6 @@
"simplebar-react": "^1.0.0-alpha.6"
},
"devDependencies": {
"@types/js-beautify": "^1.8.1",
"@types/react-syntax-highlighter": "^10.1.0",
"@types/react-textarea-autosize": "^4.3.3",
"@types/recompose": "^0.30.5",

View File

@ -1,34 +0,0 @@
/* eslint-disable import/no-extraneous-dependencies */
// This is allows us to test whether the link works via the actions addon
import React, { Children, FunctionComponent, ReactElement, ReactNode } from 'react';
import PropTypes from 'prop-types';
import { action } from '@storybook/addon-actions';
const onLinkClick = action('onLinkClick');
interface StoryLinkWrapperProps {
href: string;
passHref?: boolean;
}
const StoryLinkWrapper: FunctionComponent<StoryLinkWrapperProps> = ({
href,
passHref,
children,
}) => {
const child = Children.only(children) as ReactElement;
return React.cloneElement(child, {
href: passHref && href,
onClick: (e: React.MouseEvent) => {
e.preventDefault();
onLinkClick(href);
},
});
};
StoryLinkWrapper.defaultProps = {
passHref: false,
};
export default StoryLinkWrapper;

View File

@ -170,6 +170,7 @@ exports[`Storyshots Basics|SyntaxHighlighter bash 1`] = `
.emotion-3 {
position: relative;
overflow: hidden;
color: #333333;
}
.emotion-1 {
@ -276,6 +277,7 @@ exports[`Storyshots Basics|SyntaxHighlighter bordered & copy-able 1`] = `
.emotion-5 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}
@ -733,8 +735,331 @@ exports[`Storyshots Basics|SyntaxHighlighter bordered & copy-able 1`] = `
>
;
</span>
</code>
</pre>
</div>
</div>
</div>
</div>
<div
class="simplebar-placeholder"
/>
</div>
<div
class="simplebar-track simplebar-horizontal"
>
<div
class="simplebar-scrollbar"
/>
</div>
<div
class="simplebar-track simplebar-vertical"
>
<div
class="simplebar-scrollbar"
/>
</div>
</div>
<div
class="emotion-4"
>
<button
class="emotion-3"
>
Copy
</button>
</div>
</div>
`;
exports[`Storyshots Basics|SyntaxHighlighter dark unsupported 1`] = `
.emotion-1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
margin: 0;
padding: 10px;
}
.emotion-0 {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
padding-right: 0;
opacity: 1;
}
.emotion-5 {
position: relative;
overflow: hidden;
color: #FFFFFF;
border: 1px solid rgba(255,255,255,.1);
background: #333333;
}
.emotion-2 {
overflow-y: auto;
height: 100%;
overflow-x: auto;
width: 100%;
position: relative;
}
.emotion-2 code {
padding-right: 10px;
}
.emotion-2 * .token {
font-family: "Operator Mono","Fira Code Retina","Fira Code","FiraCode-Retina","Andale Mono","Lucida Console",Consolas,Monaco,monospace;
-webkit-font-smoothing: antialiased;
}
.emotion-2 * .token.comment {
color: #7C7C7C;
font-style: italic;
}
.emotion-2 * .token.prolog {
color: #7C7C7C;
font-style: italic;
}
.emotion-2 * .token.doctype {
color: #7C7C7C;
font-style: italic;
}
.emotion-2 * .token.cdata {
color: #7C7C7C;
font-style: italic;
}
.emotion-2 * .token.string {
color: #92C379;
}
.emotion-2 * .token.punctuation {
color: #EDEDED;
}
.emotion-2 * .token.operator {
color: #EDEDED;
}
.emotion-2 * .token.url {
color: #C6C5FE;
}
.emotion-2 * .token.symbol {
color: #C6C5FE;
}
.emotion-2 * .token.number {
color: #C6C5FE;
}
.emotion-2 * .token.boolean {
color: #C6C5FE;
}
.emotion-2 * .token.variable {
color: #C6C5FE;
}
.emotion-2 * .token.constant {
color: #C6C5FE;
}
.emotion-2 * .token.inserted {
color: #C6C5FE;
}
.emotion-2 * .token.atrule {
color: #B474DD;
}
.emotion-2 * .token.keyword {
color: #B474DD;
}
.emotion-2 * .token.attr-value {
color: #B474DD;
}
.emotion-2 * .token.function {
color: #EDEDED;
}
.emotion-2 * .token.deleted {
color: #9a050f;
}
.emotion-2 * .token.important {
font-weight: bold;
}
.emotion-2 * .token.bold {
font-weight: bold;
}
.emotion-2 * .token.italic {
font-style: italic;
}
.emotion-2 * .token.class-name {
color: #FFFFB6;
}
.emotion-2 * .token.tag {
color: #A8FF60;
}
.emotion-2 * .token.selector {
color: #A8FF60;
}
.emotion-2 * .token.attr-name {
color: #96CBFE;
}
.emotion-2 * .token.property {
color: #96CBFE;
}
.emotion-2 * .token.regex {
color: #96CBFE;
}
.emotion-2 * .token.entity {
color: #96CBFE;
}
.emotion-2 * .token.directive.tag .tag {
background: #ffff00;
color: #EDEDED;
}
.emotion-2 * .language-json .token.boolean {
color: #B474DD;
}
.emotion-2 * .language-json .token.number {
color: #B474DD;
}
.emotion-2 * .language-json .token.property {
color: #FFFFB6;
}
.emotion-2 * .namespace {
opacity: 0.7;
}
.emotion-4 {
position: absolute;
bottom: 0;
right: 0;
max-width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
background: #333;
}
.emotion-3 {
border: 0 none;
padding: 4px 10px;
cursor: pointer;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #FFFFFF;
background: #333;
font-size: 12px;
line-height: 16px;
font-weight: 700;
border-top: 1px solid rgba(255,255,255,.1);
border-left: 1px solid rgba(255,255,255,.1);
margin-left: -1px;
border-radius: 4px 0 0 0;
}
.emotion-3:not(:last-child) {
border-right: 1px solid rgba(255,255,255,.1);
}
.emotion-3 + * {
border-left: 1px solid rgba(255,255,255,.1);
border-radius: 0;
}
.emotion-3:focus {
box-shadow: #1EA7FD 0 -3px 0 0 inset;
outline: 0 none;
}
<div
class="emotion-5"
>
<div
class="emotion-2"
data-simplebar="true"
>
<div
class="simplebar-wrapper"
>
<div
class="simplebar-height-auto-observer-wrapper"
>
<div
class="simplebar-height-auto-observer"
/>
</div>
<div
class="simplebar-mask"
>
<div
class="simplebar-offset"
>
<div
class="simplebar-content-wrapper"
>
<div
class="simplebar-content"
>
<pre
class="hljs emotion-1"
>
<code
class="emotion-0"
>
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
</code>
</pre>
</div>
@ -942,6 +1267,7 @@ exports[`Storyshots Basics|SyntaxHighlighter jsx 1`] = `
.emotion-3 {
position: relative;
overflow: hidden;
color: #333333;
}
.emotion-1 {
@ -1212,8 +1538,6 @@ exports[`Storyshots Basics|SyntaxHighlighter jsx 1`] = `
>
;
</span>
</code>
</pre>
</div>
@ -1425,6 +1749,7 @@ exports[`Storyshots Basics|SyntaxHighlighter padded 1`] = `
.emotion-3 {
position: relative;
overflow: hidden;
color: #333333;
}
<div
@ -1652,8 +1977,6 @@ exports[`Storyshots Basics|SyntaxHighlighter padded 1`] = `
>
;
</span>
</code>
</pre>
</div>
@ -1852,6 +2175,7 @@ exports[`Storyshots Basics|SyntaxHighlighter showLineNumbers 1`] = `
.emotion-3 {
position: relative;
overflow: hidden;
color: #333333;
}
.emotion-1 {
@ -2124,8 +2448,6 @@ exports[`Storyshots Basics|SyntaxHighlighter showLineNumbers 1`] = `
>
;
</span>
</code>
</pre>
</div>
@ -2324,6 +2646,7 @@ exports[`Storyshots Basics|SyntaxHighlighter story 1`] = `
.emotion-3 {
position: relative;
overflow: hidden;
color: #333333;
}
.emotion-1 {
@ -3197,7 +3520,7 @@ exports[`Storyshots Basics|SyntaxHighlighter story 1`] = `
class="token plain-text"
>
page type
page type
</span>
<span
@ -3294,8 +3617,6 @@ exports[`Storyshots Basics|SyntaxHighlighter story 1`] = `
>
;
</span>
</code>
</pre>
</div>
@ -3323,3 +3644,328 @@ exports[`Storyshots Basics|SyntaxHighlighter story 1`] = `
</div>
</div>
`;
exports[`Storyshots Basics|SyntaxHighlighter unsupported 1`] = `
.emotion-5 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}
.emotion-2 {
overflow-y: auto;
height: 100%;
overflow-x: auto;
width: 100%;
position: relative;
}
.emotion-2 code {
padding-right: 10px;
}
.emotion-2 * .token {
font-family: "Operator Mono","Fira Code Retina","Fira Code","FiraCode-Retina","Andale Mono","Lucida Console",Consolas,Monaco,monospace;
-webkit-font-smoothing: antialiased;
}
.emotion-2 * .token.comment {
color: #008000;
font-style: italic;
}
.emotion-2 * .token.prolog {
color: #008000;
font-style: italic;
}
.emotion-2 * .token.doctype {
color: #008000;
font-style: italic;
}
.emotion-2 * .token.cdata {
color: #008000;
font-style: italic;
}
.emotion-2 * .token.string {
color: #A31515;
}
.emotion-2 * .token.punctuation {
color: #393A34;
}
.emotion-2 * .token.operator {
color: #393A34;
}
.emotion-2 * .token.url {
color: #36acaa;
}
.emotion-2 * .token.symbol {
color: #36acaa;
}
.emotion-2 * .token.number {
color: #36acaa;
}
.emotion-2 * .token.boolean {
color: #36acaa;
}
.emotion-2 * .token.variable {
color: #36acaa;
}
.emotion-2 * .token.constant {
color: #36acaa;
}
.emotion-2 * .token.inserted {
color: #36acaa;
}
.emotion-2 * .token.atrule {
color: #0000ff;
}
.emotion-2 * .token.keyword {
color: #0000ff;
}
.emotion-2 * .token.attr-value {
color: #0000ff;
}
.emotion-2 * .token.function {
color: #393A34;
}
.emotion-2 * .token.deleted {
color: #9a050f;
}
.emotion-2 * .token.important {
font-weight: bold;
}
.emotion-2 * .token.bold {
font-weight: bold;
}
.emotion-2 * .token.italic {
font-style: italic;
}
.emotion-2 * .token.class-name {
color: #2B91AF;
}
.emotion-2 * .token.tag {
color: #800000;
}
.emotion-2 * .token.selector {
color: #800000;
}
.emotion-2 * .token.attr-name {
color: #ff0000;
}
.emotion-2 * .token.property {
color: #ff0000;
}
.emotion-2 * .token.regex {
color: #ff0000;
}
.emotion-2 * .token.entity {
color: #ff0000;
}
.emotion-2 * .token.directive.tag .tag {
background: #ffff00;
color: #393A34;
}
.emotion-2 * .language-json .token.boolean {
color: #0000ff;
}
.emotion-2 * .language-json .token.number {
color: #0000ff;
}
.emotion-2 * .language-json .token.property {
color: #2B91AF;
}
.emotion-2 * .namespace {
opacity: 0.7;
}
.emotion-1 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
margin: 0;
padding: 10px;
}
.emotion-0 {
-webkit-flex: 1;
-ms-flex: 1;
flex: 1;
padding-right: 0;
opacity: 1;
}
.emotion-4 {
position: absolute;
bottom: 0;
right: 0;
max-width: 100%;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
background: #FFFFFF;
}
.emotion-3 {
border: 0 none;
padding: 4px 10px;
cursor: pointer;
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
color: #333333;
background: #FFFFFF;
font-size: 12px;
line-height: 16px;
font-weight: 700;
border-top: 1px solid rgba(0,0,0,.1);
border-left: 1px solid rgba(0,0,0,.1);
margin-left: -1px;
border-radius: 4px 0 0 0;
}
.emotion-3:not(:last-child) {
border-right: 1px solid rgba(0,0,0,.1);
}
.emotion-3 + * {
border-left: 1px solid rgba(0,0,0,.1);
border-radius: 0;
}
.emotion-3:focus {
box-shadow: #1EA7FD 0 -3px 0 0 inset;
outline: 0 none;
}
<div
class="emotion-5"
>
<div
class="emotion-2"
data-simplebar="true"
>
<div
class="simplebar-wrapper"
>
<div
class="simplebar-height-auto-observer-wrapper"
>
<div
class="simplebar-height-auto-observer"
/>
</div>
<div
class="simplebar-mask"
>
<div
class="simplebar-offset"
>
<div
class="simplebar-content-wrapper"
>
<div
class="simplebar-content"
>
<pre
class="hljs emotion-1"
>
<code
class="emotion-0"
>
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
</code>
</pre>
</div>
</div>
</div>
</div>
<div
class="simplebar-placeholder"
/>
</div>
<div
class="simplebar-track simplebar-horizontal"
>
<div
class="simplebar-scrollbar"
/>
</div>
<div
class="simplebar-track simplebar-vertical"
>
<div
class="simplebar-scrollbar"
/>
</div>
</div>
<div
class="emotion-4"
>
<button
class="emotion-3"
>
Copy
</button>
</div>
</div>
`;

View File

@ -0,0 +1,90 @@
import { stripIndents } from 'common-tags';
import { formatter } from './formatter';
test('handles empty string', () => {
const input = '';
const result = formatter(input);
expect(result).toBe(input);
});
test('handles single line', () => {
const input = 'console.log("hello world")';
const result = formatter(input);
expect(result).toBe(input);
});
test('does not transform correct code', () => {
const input = stripIndents`
console.log("hello");
console.log("world");
`;
const result = formatter(input);
expect(result).toBe(input);
});
test('does transform incorrect code', () => {
const input = `
console.log("hello");
console.log("world");
`;
const result = formatter(input);
expect(result).toBe(`console.log("hello");
console.log("world");`);
});
test('more indentations - skip first line', () => {
const input = `
test('handles empty string', () => {
const input = '';
const result = formatter(input);
expect(result).toBe(input);
});
`;
const result = formatter(input);
expect(result).toBe(`test('handles empty string', () => {
const input = '';
const result = formatter(input);
expect(result).toBe(input);
});`);
});
test('more indentations - code on first line', () => {
const input = `// some comment
test('handles empty string', () => {
const input = '';
const result = formatter(input);
expect(result).toBe(input);
});
`;
const result = formatter(input);
expect(result).toBe(`// some comment
test('handles empty string', () => {
const input = '';
const result = formatter(input);
expect(result).toBe(input);
});`);
});
test('removes whitespace in empty line completely', () => {
const input = `
console.log("hello");
console.log("world");
`;
const result = formatter(input);
expect(result).toBe(`console.log("hello");
console.log("world");`);
});

View File

@ -0,0 +1,26 @@
import memoize from 'memoizerific';
export const formatter = memoize(2)((code: string) => {
// code provided to the component is often coming from template literals, which preserve whitespace.
// sometimes the first line doesn't have padding, but the second does.
// we split the code-string into lines, then if we find padding on line 0 or 1,
// we assume that padding is bad, and remove that much padding on all following lines
return code
.split(/\n/)
.reduce(
(acc, i, index) => {
const match = i.match(/^((:?\s|\t)+)/);
const padding = match ? match[1] : '';
if (acc.firstIndent === '' && padding && index < 3) {
return { result: `${acc.result}\n${i.replace(padding, '')}`, firstIndent: padding };
}
return {
result: `${acc.result}\n${i.replace(acc.firstIndent, '').replace(/\s*$/, '')}`,
firstIndent: acc.firstIndent,
};
},
{ firstIndent: '', result: '' }
)
.result.trim();
});

View File

@ -1,5 +1,6 @@
import React from 'react';
import * as React from 'react';
import { storiesOf } from '@storybook/react';
import { ThemeProvider, themes, convert, ensure } from '@storybook/theming';
import { SyntaxHighlighter } from './syntaxhighlighter';
storiesOf('Basics|SyntaxHighlighter', module)
@ -18,6 +19,55 @@ storiesOf('Basics|SyntaxHighlighter', module)
`}
</SyntaxHighlighter>
))
.add('unsupported', () => (
<SyntaxHighlighter language="C#" bordered copyable>
{`
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
`}
</SyntaxHighlighter>
))
.add('dark unsupported', () => {
const theme = ensure(themes.dark);
return (
<ThemeProvider theme={theme}>
<SyntaxHighlighter bordered language="C#" copyable>
{`
// A Hello World! program in C#.
using System;
namespace HelloWorld
{
class Hello
{
static void Main()
{
Console.WriteLine("Hello World!");
// Keep the console window open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
}
`}
</SyntaxHighlighter>
</ThemeProvider>
);
})
.add('story', () => (
<SyntaxHighlighter language="jsx" copyable={false}>
{`

View File

@ -10,10 +10,11 @@ import html from 'react-syntax-highlighter/languages/prism/markup';
import ReactSyntaxHighlighter, { registerLanguage } from 'react-syntax-highlighter/prism-light';
import { js as beautify } from 'js-beautify';
import { ActionBar } from '../ActionBar/ActionBar';
import { ScrollArea } from '../ScrollArea/ScrollArea';
import { formatter } from './formatter';
registerLanguage('jsx', jsx);
registerLanguage('bash', bash);
registerLanguage('css', css);
@ -29,10 +30,11 @@ interface WrapperProps {
}
const Wrapper = styled.div<WrapperProps>(
{
({ theme }) => ({
position: 'relative',
overflow: 'hidden',
},
color: theme.color.defaultText,
}),
({ theme, bordered }) =>
bordered
? {
@ -106,26 +108,6 @@ export class SyntaxHighlighter extends Component<
state = { copied: false };
formatCode = memoize(2)((language: string, code: string) => {
let formattedCode = code;
if (language === 'jsx') {
try {
// eslint-disable-next-line @typescript-eslint/no-object-literal-type-assertion
formattedCode = beautify(code, {
indent_size: 2,
brace_style: 'collapse-preserve-inline',
end_with_newline: true,
wrap_line_length: 80,
e4x: true, // e4x is not available in JsBeautify types for now
} as JsBeautifyOptions);
} catch (error) {
// eslint-disable-next-line no-console
console.warn("Couldn't format code", formattedCode);
}
}
return formattedCode;
});
onClick = (e: React.MouseEvent) => {
const { children } = this.props;
@ -171,9 +153,7 @@ export class SyntaxHighlighter extends Component<
lineNumberContainerStyle={{}}
{...rest}
>
{format
? this.formatCode(language, (children as string).trim())
: (children as string).trim()}
{format ? formatter((children as string).trim()) : (children as string).trim()}
</ReactSyntaxHighlighter>
</Scroller>
{copyable ? (

View File

@ -1,10 +1,36 @@
import React from 'react';
import React, { Children, FunctionComponent, ReactElement, ReactNode } from 'react';
import { storiesOf } from '@storybook/react';
import { action } from '@storybook/addon-actions';
import { WithTooltip } from './WithTooltip';
import { TooltipLinkList } from './TooltipLinkList';
import StoryLinkWrapper from '../StoryLinkWrapper';
const onLinkClick = action('onLinkClick');
interface StoryLinkWrapperProps {
href: string;
passHref?: boolean;
}
const StoryLinkWrapper: FunctionComponent<StoryLinkWrapperProps> = ({
href,
passHref,
children,
}) => {
const child = Children.only(children) as ReactElement;
return React.cloneElement(child, {
href: passHref && href,
onClick: (e: React.MouseEvent) => {
e.preventDefault();
onLinkClick(href);
},
});
};
StoryLinkWrapper.defaultProps = {
passHref: false,
};
export const links = [
{ id: '1', title: 'Link', href: 'http://google.com' },

View File

@ -106,7 +106,7 @@ export const convert = (inherit: ThemeVars = lightThemeVars): Theme => {
color: createColors(inherit),
background: {
app: appBg,
bar: background.bar,
bar: barBg,
content: appContentBg,
gridCellSize: gridCellSize || background.gridCellSize,
hoverable:

View File

@ -34,10 +34,7 @@
"fast-deep-equal": "^2.0.1",
"fuse.js": "^3.4.4",
"global": "^4.3.2",
"lodash.debounce": "^4.0.8",
"lodash.isequal": "^4.5.0",
"lodash.mergewith": "^4.6.1",
"lodash.pick": "^4.4.0",
"lodash": "^4.17.11",
"markdown-to-jsx": "^6.9.3",
"memoizerific": "^1.11.3",
"polished": "^3.3.1",

View File

@ -1,5 +1,5 @@
import store from 'store2';
import debounce from 'lodash.debounce';
import debounce from 'lodash/debounce';
import memoize from 'memoizerific';
export const get = () => {

View File

@ -1,5 +1,5 @@
import mergeWith from 'lodash.mergewith';
import isEqual from 'lodash.isequal';
import mergeWith from 'lodash/mergeWith';
import isEqual from 'lodash/isEqual';
import { logger } from '@storybook/client-logger';

View File

@ -1442,6 +1442,7 @@ exports[`Storyshots UI|Settings/AboutScreen new version required 1`] = `
.emotion-23 {
position: relative;
overflow: hidden;
color: #333333;
border: 1px solid rgba(0,0,0,.1);
background: #FFFFFF;
}

150
yarn.lock
View File

@ -3746,37 +3746,11 @@
dependencies:
"@types/jest-diff" "*"
"@types/js-beautify@^1.8.1":
version "1.8.1"
resolved "https://registry.yarnpkg.com/@types/js-beautify/-/js-beautify-1.8.1.tgz#c210b3206bece04dc240b1deeec185f7b5b03534"
integrity sha512-B1Br8yE27obcYvFx5ECZswT/947aAFNb9lHqnkUOhtOfvJqaa6Axibo4T+5G6iQlUfjgSd8am9R/9j9UBfRlrw==
"@types/json5@^0.0.29":
version "0.0.29"
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
integrity sha1-7ihweulOEdK4J7y+UnC86n8+ce4=
"@types/lodash.isequal@^4.5.3":
version "4.5.5"
resolved "https://registry.yarnpkg.com/@types/lodash.isequal/-/lodash.isequal-4.5.5.tgz#4fed1b1b00bef79e305de0352d797e9bb816c8ff"
integrity sha512-4IKbinG7MGP131wRfceK6W4E/Qt3qssEFLF30LnJbjYiSfHGGRU/Io8YxXrZX109ir+iDETC8hw8QsDijukUVg==
dependencies:
"@types/lodash" "*"
"@types/lodash.mergewith@^4.6.4":
version "4.6.6"
resolved "https://registry.yarnpkg.com/@types/lodash.mergewith/-/lodash.mergewith-4.6.6.tgz#c4698f5b214a433ff35cb2c75ee6ec7f99d79f10"
integrity sha512-RY/8IaVENjG19rxTZu9Nukqh0W2UrYgmBj5sdns4hWRZaV8PqR7wIKHFKzvOTjo4zVRV7sVI+yFhAJql12Kfqg==
dependencies:
"@types/lodash" "*"
"@types/lodash.pick@^4.4.4":
version "4.4.6"
resolved "https://registry.yarnpkg.com/@types/lodash.pick/-/lodash.pick-4.4.6.tgz#ae4e8f109e982786313bb6aac4b1a73aefa6e9be"
integrity sha512-u8bzA16qQ+8dY280z3aK7PoWb3fzX5ATJ0rJB6F+uqchOX2VYF02Aqa+8aYiHiHgPzQiITqCgeimlyKFy4OA6g==
dependencies:
"@types/lodash" "*"
"@types/lodash.zipobject@^4.1.4":
version "4.1.6"
resolved "https://registry.yarnpkg.com/@types/lodash.zipobject/-/lodash.zipobject-4.1.6.tgz#75e140f44ac7d7682a18d3aae8ee4594fad094d7"
@ -3872,9 +3846,9 @@
"@types/react" "*"
"@types/react-native@^0.57.57":
version "0.57.57"
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.57.57.tgz#4b59068acf6e542ac8e1e02e8a639b47e3e02c02"
integrity sha512-OZyBlMyMeU3gXAmc1nnJhlWGihWUOiVR5Tj0y4TAA0rkKKHJwuNPPba6aaFmEaNcoZ9ejc3G30H+dneDOqICdg==
version "0.57.58"
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.57.58.tgz#630258e10497772dbbfdf813205d38b76b54fa2a"
integrity sha512-SshKU18ajdpQQ5RZrHyUTI3e++pMo4fcrWnnbGFjzgp5ykYhbfUQ005Q93a/UV9ObsAmRppHVuq11d3b4tiDug==
dependencies:
"@types/prop-types" "*"
"@types/react" "*"
@ -3938,27 +3912,6 @@
resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-1.0.1.tgz#0a851d3bd96498fa25c33ab7278ed3bd65f06c3e"
integrity sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==
"@types/storybook__addon-actions@^3.4.1":
version "3.4.2"
resolved "https://registry.yarnpkg.com/@types/storybook__addon-actions/-/storybook__addon-actions-3.4.2.tgz#1d08689cc3259269ddb3479a2307c9d16944309e"
integrity sha512-CWxGz2pXav9PHcwrtXmkuH+xJL7sAu2AmIGEbkdT3Xs5jzBPZUEDEN//ZF7o6IOPP/tdXU37K1hrVMt9TDO0Bw==
"@types/storybook__addon-info@^4.1.0":
version "4.1.1"
resolved "https://registry.yarnpkg.com/@types/storybook__addon-info/-/storybook__addon-info-4.1.1.tgz#8b05daa1cae8f6bfa252c9fa5d67aa648dfdf28c"
integrity sha512-ugk/BXBBZl0c8xhvIBIVFCF/WLxQhK6Mh8V4st6nbouLXA07SQMLtF1Fcuo2fLdDr1Ao1smABaQUiC2L2UwZwA==
dependencies:
"@types/react" "*"
"@types/storybook__react" "*"
"@types/storybook__react@*", "@types/storybook__react@^4.0.0":
version "4.0.1"
resolved "https://registry.yarnpkg.com/@types/storybook__react/-/storybook__react-4.0.1.tgz#b6320c9d027b8ee7ef1445fef8b4cba196d48ace"
integrity sha512-knkZErqv8Iy2QbebqBa5tsy2itIMKdO6bcQ7C19nmgTc+j1pnQhXCGcVyARzAQ1/NAuSYudSWQAKG+plgK7hyQ==
dependencies:
"@types/react" "*"
"@types/webpack-env" "*"
"@types/symlink-or-copy@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@types/symlink-or-copy/-/symlink-or-copy-1.2.0.tgz#4151a81b4052c80bc2becbae09f3a9ec010a9c7a"
@ -4020,7 +3973,7 @@
"@types/unist" "*"
"@types/vfile-message" "*"
"@types/webpack-env@*", "@types/webpack-env@^1.13.7":
"@types/webpack-env@^1.13.7":
version "1.13.9"
resolved "https://registry.yarnpkg.com/@types/webpack-env/-/webpack-env-1.13.9.tgz#a67287861c928ebf4159a908d1fb1a2a34d4097a"
integrity sha512-p8zp5xqkly3g4cCmo2mKOHI9+Z/kObmDj0BmjbDDJQlgDTiEGTbm17MEwTAusV6XceCy+bNw9q/ZHXHyKo3zkg==
@ -7917,7 +7870,7 @@ browserslist@^3.2.6:
caniuse-lite "^1.0.30000844"
electron-to-chromium "^1.3.47"
browserslist@^4.0.0, browserslist@^4.1.1, browserslist@^4.3.4, browserslist@^4.3.5, browserslist@^4.4.1, browserslist@^4.5.2, browserslist@^4.5.4:
browserslist@^4.0.0, browserslist@^4.1.1, browserslist@^4.3.4, browserslist@^4.3.5, browserslist@^4.4.1, browserslist@^4.5.2, browserslist@^4.5.4, browserslist@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.0.tgz#5274028c26f4d933d5b1323307c1d1da5084c9ff"
integrity sha512-Jk0YFwXBuMOOol8n6FhgkDzn3mY9PYLYGk29zybF05SbRTsMgPqmTNeQQhOghCxq5oFqAXE3u4sYddr4C0uRhg==
@ -9164,7 +9117,7 @@ concurrently@^4.0.1:
tree-kill "^1.1.0"
yargs "^12.0.1"
config-chain@^1.1.11, config-chain@^1.1.12:
config-chain@^1.1.11:
version "1.1.12"
resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
@ -9460,26 +9413,25 @@ copy-webpack-plugin@^5.0.0:
webpack-log "^2.0.0"
core-js-compat@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.0.1.tgz#bff73ba31ca8687431b9c88f78d3362646fb76f0"
integrity sha512-2pC3e+Ht/1/gD7Sim/sqzvRplMiRnFQVlPpDVaHtY9l7zZP7knamr3VRD6NyGfHd84MrDC0tAM9ulNxYMW0T3g==
version "3.1.0"
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.0.tgz#340492a001d81100812e0f6e874ee6e21639ae92"
integrity sha512-v8M7YAMacMOJ4T4Z9QSud3dFYASMDvK9d2RWBHRSJlO4nGboLQVtFdbDmgzxfM7XrvcvO56L0sHcqGjuk/4wTQ==
dependencies:
browserslist "^4.5.4"
core-js "3.0.1"
core-js-pure "3.0.1"
browserslist "^4.6.0"
core-js-pure "3.1.0"
semver "^6.0.0"
core-js-pure@3.0.1, core-js-pure@^3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.0.1.tgz#37358fb0d024e6b86d443d794f4e37e949098cbe"
integrity sha512-mSxeQ6IghKW3MoyF4cz19GJ1cMm7761ON+WObSyLfTu/Jn3x7w4NwNFnrZxgl4MTSvYYepVLNuRtlB4loMwJ5g==
core-js-pure@3.1.0, core-js-pure@^3.0.1:
version "3.1.0"
resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.0.tgz#5e12e66435df4f2cc7df84cc891350aaeb66d0f0"
integrity sha512-9NxJBUp8p35vrBbEhQl+FvKbYY68fELWld0asAXMnfWl9xRrN472mw/n+ZvmnG0fYh4U7agPcJZ7iqcJW5R9Rg==
core-js@2.6.4:
version "2.6.4"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.4.tgz#b8897c062c4d769dd30a0ac5c73976c47f92ea0d"
integrity sha512-05qQ5hXShcqGkPZpXEFLIpxayZscVD2kuMBZewxiIPPEagukO4mqgPA9CWhUvFBJfy3ODdK2p9xyHh7FTU9/7A==
core-js@3.0.1, core-js@^3.0.0, core-js@^3.0.1:
core-js@3.0.1:
version "3.0.1"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.0.1.tgz#1343182634298f7f38622f95e73f54e48ddf4738"
integrity sha512-sco40rF+2KlE0ROMvydjkrVMMG1vYilP2ALoRXcYR4obqbYIuV3Bg+51GEDW+HF8n7NRA+iaA4qD0nD9lo9mew==
@ -9489,11 +9441,21 @@ core-js@^1.0.0:
resolved "https://registry.yarnpkg.com/core-js/-/core-js-1.2.7.tgz#652294c14651db28fa93bd2d5ff2983a4f08c636"
integrity sha1-ZSKUwUZR2yj6k70tX/KYOk8IxjY=
core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.7, core-js@^2.6.2, core-js@^2.6.5:
core-js@^2.2.2, core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.5.7, core-js@^2.6.5:
version "2.6.6"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.6.tgz#00eb6d6bf815471cc16d8563edd7d38786dec50b"
integrity sha512-Mt/LaAym54NXnrjEMdo918cT2h70tqb/Yl7T3uPHQHRm5SxVoqlKmerUy4mL11k8saSBDWQ7ULIHxmeFyT3pfg==
core-js@^2.6.2:
version "2.6.5"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895"
integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==
core-js@^3.0.0, core-js@^3.0.1:
version "3.1.0"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.1.0.tgz#7118f0dad99054204b6821c1f82e67b42cc21628"
integrity sha512-EyF8cMvUWRDWRLmC3+i50D1DqK4aFZWb/6PDPP2QfX2r0zXkgR2V9wt7jX7TRM0Qdj/3f6+JQkqfCaGkSj92iQ==
core-object@^3.1.5:
version "3.1.5"
resolved "https://registry.yarnpkg.com/core-object/-/core-object-3.1.5.tgz#fa627b87502adc98045e44678e9a8ec3b9c0d2a9"
@ -10917,16 +10879,6 @@ editions@^1.1.1:
resolved "https://registry.yarnpkg.com/editions/-/editions-1.3.4.tgz#3662cb592347c3168eb8e498a0ff73271d67f50b"
integrity sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==
editorconfig@^0.15.3:
version "0.15.3"
resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.3.tgz#bef84c4e75fb8dcb0ce5cee8efd51c15999befc5"
integrity sha512-M9wIMFx96vq0R4F+gRpY3o2exzb8hEj/n9S8unZtHSvYjibBp/iMufSzvmOcV/laG0ZtuTVGtiJggPOSW2r93g==
dependencies:
commander "^2.19.0"
lru-cache "^4.1.5"
semver "^5.6.0"
sigmund "^1.0.1"
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
@ -11480,11 +11432,12 @@ envinfo@^5.7.0:
integrity sha512-pwdo0/G3CIkQ0y6PCXq4RdkvId2elvtPCJMG0konqlrfkWQbf1DWeH9K2b/cvu2YgGvPPTOnonZxXM1gikFu1w==
enzyme-adapter-react-16@^1.9.1:
version "1.13.0"
resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.13.0.tgz#530e4aed3c127d7a7c5c7f4f634ad9ba65f719f6"
integrity sha512-ZUVo9XATKrKavfe9v61EiYDu6V1NJCKtJyp1X2ILPgtuGQ58bItUR9uWwH6gzKJNww3sUiXM826jIiwPgO9iVQ==
version "1.13.1"
resolved "https://registry.yarnpkg.com/enzyme-adapter-react-16/-/enzyme-adapter-react-16-1.13.1.tgz#2e8ee300e38674b9914ae52b04af9493050355e2"
integrity sha512-DCKbkiVlfLTbn4SXO8mXDQx1SmmwON5oKXn2QfQSMCt8eTYGwUXy/OBGSuss6KKwY5w5QfK1sQFxhgFOkMCjrw==
dependencies:
enzyme-adapter-utils "^1.12.0"
has "^1.0.3"
object.assign "^4.1.0"
object.values "^1.1.0"
prop-types "^15.7.2"
@ -17211,11 +17164,12 @@ jest-preset-angular@^6.0.1:
ts-jest "~23.1.3"
jest-preset-angular@^7.1.0:
version "7.1.0"
resolved "https://registry.yarnpkg.com/jest-preset-angular/-/jest-preset-angular-7.1.0.tgz#df023f8bd9bf4f20497701bcd813906fa26e04ce"
integrity sha512-MSenqcEbmkNYXh77zpsFbIJvMBsVD2kPTy5+2GLm/07e7cQe29GEQLNN4F52VZMGW70RCvGFAiAE4ljsK9hYSg==
version "7.1.1"
resolved "https://registry.yarnpkg.com/jest-preset-angular/-/jest-preset-angular-7.1.1.tgz#b51fc910e5abea91701fcd89532823ae5990450b"
integrity sha512-/uJUi9IHoCxtB6aH6I+llpHjyfGfP2q32lcBCUKKk16v1uYKXvj1Nfdlvfvu/eqjZVoKEDLP+Ejup4bbsc0gAA==
dependencies:
jest-environment-jsdom-thirteen "^1.0.0"
pretty-format "^24.0.0"
ts-jest "^24.0.0"
jest-raw-loader@^1.0.1:
@ -17741,17 +17695,6 @@ js-base64@^2.1.8, js-base64@^2.1.9:
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.5.1.tgz#1efa39ef2c5f7980bb1784ade4a8af2de3291121"
integrity sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==
js-beautify@^1.8.9:
version "1.10.0"
resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.10.0.tgz#9753a13c858d96828658cd18ae3ca0e5783ea672"
integrity sha512-OMwf/tPDpE/BLlYKqZOhqWsd3/z2N3KOlyn1wsCRGFwViE8LOQTcDtathQvHvZc+q+zWmcNAbwKSC+iJoMaH2Q==
dependencies:
config-chain "^1.1.12"
editorconfig "^0.15.3"
glob "^7.1.3"
mkdirp "~0.5.1"
nopt "~4.0.1"
js-levenshtein@^1.1.3:
version "1.1.6"
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.6.tgz#c6cee58eb3550372df8deb85fad5ce66ce01d59d"
@ -19497,7 +19440,7 @@ lowlight@~1.9.1:
fault "^1.0.2"
highlight.js "~9.12.0"
lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.2, lru-cache@^4.1.3, lru-cache@^4.1.5:
lru-cache@^4.0.1, lru-cache@^4.1.1, lru-cache@^4.1.2, lru-cache@^4.1.3:
version "4.1.5"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
@ -21179,7 +21122,7 @@ noop-logger@^0.1.1:
dependencies:
abbrev "1"
nopt@^4.0.1, nopt@~4.0.1:
nopt@^4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
integrity sha1-0NRoWv1UFRk8jHUFYC0NF81kR00=
@ -23744,7 +23687,7 @@ pretty-format@^23.4.1, pretty-format@^23.6.0:
ansi-regex "^3.0.0"
ansi-styles "^3.2.0"
pretty-format@^24.7.0, pretty-format@^24.8.0:
pretty-format@^24.0.0, pretty-format@^24.7.0, pretty-format@^24.8.0:
version "24.8.0"
resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-24.8.0.tgz#8dae7044f58db7cb8be245383b565a963e3c27f2"
integrity sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==
@ -27366,11 +27309,6 @@ shorthash@0.0.2:
resolved "https://registry.yarnpkg.com/shorthash/-/shorthash-0.0.2.tgz#59b268eecbde59038b30da202bcfbddeb2c4a4eb"
integrity sha1-WbJo7sveWQOLMNogK8+93rLEpOs=
sigmund@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@ -29674,9 +29612,9 @@ uglify-js@^3.0.0:
source-map "~0.6.1"
uglify-js@^3.0.13, uglify-js@^3.1.4:
version "3.5.13"
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.13.tgz#d2d8857b598d77f8764ae3bfcf90bb1df134d2bd"
integrity sha512-Lho+IJlquX6sdJgyKSJx/M9y4XbDd3ekPjD8S6HYmT5yVSwDtlSuca2w5hV4g2dIsp0Y/4orbfWxKexodmFv7w==
version "3.5.14"
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.14.tgz#edf2a322c37fd7173a954fb35af199b52fb10946"
integrity sha512-dgyjIw8KFK6AyVl5vm2tEqPewv5TKGEiiVFLI1LbF+oHua/Njd8tZk3lIbF1AWU1rNdEg7scaceADb4zqCcWXg==
dependencies:
commander "~2.20.0"
source-map "~0.6.1"
@ -31164,9 +31102,9 @@ webpack@4.29.6:
webpack-sources "^1.3.0"
webpack@^4.23.1, webpack@^4.28.0:
version "4.31.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.31.0.tgz#ae201d45f0571336e42d1c2b5c8ab56c4d3b0c63"
integrity sha512-n6RVO3X0LbbipoE62akME9K/JI7qYrwwufs20VvgNNpqUoH4860KkaxJTbGq5bgkVZF9FqyyTG/0WPLH3PVNJA==
version "4.32.0"
resolved "https://registry.yarnpkg.com/webpack/-/webpack-4.32.0.tgz#d8726fe73bb362e0e48171990f362df5e747747b"
integrity sha512-ofFq9jjAn4HRzlmkcZZrjijbRZcqDw+mM9KrjKd0r6lS0qxyZ7jzICzhphGafXL62dGdjP7TgMK9mZeMLUgZgw==
dependencies:
"@webassemblyjs/ast" "1.8.5"
"@webassemblyjs/helper-module-context" "1.8.5"