Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nni
Commits
4784cc6c
Unverified
Commit
4784cc6c
authored
Jan 14, 2021
by
liuzhe-lz
Committed by
GitHub
Jan 14, 2021
Browse files
Merge pull request #3302 from microsoft/v2.0-merge
Merge branch v2.0 into master (no squash)
parents
25db55ca
349ead41
Changes
291
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
92 additions
and
168 deletions
+92
-168
ts/webui/src/components/NavCon.tsx
ts/webui/src/components/NavCon.tsx
+1
-1
ts/webui/src/components/TrialsDetail.tsx
ts/webui/src/components/TrialsDetail.tsx
+1
-1
ts/webui/src/components/managementExp/ExperimentManager.tsx
ts/webui/src/components/managementExp/ExperimentManager.tsx
+18
-7
ts/webui/src/components/managementExp/TrialIdColumn.tsx
ts/webui/src/components/managementExp/TrialIdColumn.tsx
+7
-2
ts/webui/src/components/overview/params/BasicInfo.tsx
ts/webui/src/components/overview/params/BasicInfo.tsx
+1
-1
ts/webui/src/static/model/experimentsManager.ts
ts/webui/src/static/model/experimentsManager.ts
+2
-1
ts/webui/src/static/style/experiment/experiment.scss
ts/webui/src/static/style/experiment/experiment.scss
+29
-9
ts/webui/src/static/style/overview/basic.scss
ts/webui/src/static/style/overview/basic.scss
+11
-3
ts/webui/src/static/style/overview/overview.scss
ts/webui/src/static/style/overview/overview.scss
+2
-1
ts/webui/src/static/style/trialsDetail.scss
ts/webui/src/static/style/trialsDetail.scss
+5
-0
ts/webui/yarn.lock
ts/webui/yarn.lock
+15
-142
No files found.
ts/webui/src/components/NavCon.tsx
View file @
4784cc6c
...
@@ -145,7 +145,7 @@ class NavCon extends React.Component<NavProps, NavState> {
...
@@ -145,7 +145,7 @@ class NavCon extends React.Component<NavProps, NavState> {
<
CommandBarButton
iconProps
=
{
infoIconAbout
}
text
=
'About'
menuProps
=
{
aboutProps
}
/>
<
CommandBarButton
iconProps
=
{
infoIconAbout
}
text
=
'About'
menuProps
=
{
aboutProps
}
/>
<
Link
to
=
'/experiment'
className
=
'experiment'
>
<
Link
to
=
'/experiment'
className
=
'experiment'
>
<
div
className
=
'expNavTitle'
>
<
div
className
=
'expNavTitle'
>
<
span
>
All experiment
</
span
>
<
span
>
All experiment
s
</
span
>
{
ChevronRightMed
}
{
ChevronRightMed
}
</
div
>
</
div
>
</
Link
>
</
Link
>
...
...
ts/webui/src/components/TrialsDetail.tsx
View file @
4784cc6c
...
@@ -82,7 +82,7 @@ class TrialsDetail extends React.Component<{}, TrialDetailState> {
...
@@ -82,7 +82,7 @@ class TrialsDetail extends React.Component<{}, TrialDetailState> {
</
Pivot
>
</
Pivot
>
</
div
>
</
div
>
{
/* trial table list */
}
{
/* trial table list */
}
<
div
style
=
{
{
backgroundColor
:
'
#fff
'
,
marginTop
:
10
}
}
>
<
div
className
=
'detailTable'
style
=
{
{
marginTop
:
10
}
}
>
<
TableList
<
TableList
tableSource
=
{
source
}
tableSource
=
{
source
}
trialsUpdateBroadcast
=
{
this
.
context
.
trialsUpdateBroadcast
}
trialsUpdateBroadcast
=
{
this
.
context
.
trialsUpdateBroadcast
}
...
...
ts/webui/src/components/managementExp/ExperimentManager.tsx
View file @
4784cc6c
...
@@ -9,6 +9,8 @@ import { MAXSCREENCOLUMNWIDHT, MINSCREENCOLUMNWIDHT } from './experimentConst';
...
@@ -9,6 +9,8 @@ import { MAXSCREENCOLUMNWIDHT, MINSCREENCOLUMNWIDHT } from './experimentConst';
import
{
Hearder
}
from
'
./Header
'
;
import
{
Hearder
}
from
'
./Header
'
;
import
NameColumn
from
'
./TrialIdColumn
'
;
import
NameColumn
from
'
./TrialIdColumn
'
;
import
FilterBtns
from
'
./FilterBtns
'
;
import
FilterBtns
from
'
./FilterBtns
'
;
import
{
TitleContext
}
from
'
../overview/TitleContext
'
;
import
{
Title
}
from
'
../overview/Title
'
;
import
'
../../App.scss
'
;
import
'
../../App.scss
'
;
import
'
../../static/style/nav/nav.scss
'
;
import
'
../../static/style/nav/nav.scss
'
;
import
'
../../static/style/experiment/experiment.scss
'
;
import
'
../../static/style/experiment/experiment.scss
'
;
...
@@ -82,13 +84,17 @@ class Experiment extends React.Component<{}, ExpListState> {
...
@@ -82,13 +84,17 @@ class Experiment extends React.Component<{}, ExpListState> {
</
div
>
</
div
>
)
:
null
}
)
:
null
}
<
Stack
className
=
'contentBox expBackground'
>
<
Stack
className
=
'contentBox expBackground'
>
<
Stack
className
=
'content'
>
{
/* 56px: navBarHeight; 48: marginTop & Bottom */
}
<
Stack
className
=
'content'
styles
=
{
{
root
:
{
minHeight
:
window
.
innerHeight
-
104
}
}
}
>
<
Stack
className
=
'experimentList'
>
<
Stack
className
=
'experimentList'
>
<
TitleContext
.
Provider
value
=
{
{
text
:
'
All experiments
'
,
icon
:
'
CustomList
'
}
}
>
<
Title
/>
</
TitleContext
.
Provider
>
<
Stack
className
=
'box'
horizontal
>
<
Stack
className
=
'box'
horizontal
>
<
div
className
=
'search'
>
<
div
className
=
'search'
>
<
SearchBox
<
SearchBox
className
=
'search-input'
className
=
'search-input'
placeholder
=
'Search the experiment by name
and
ID'
placeholder
=
'Search the experiment by name
or
ID'
onEscape
=
{
this
.
setOriginSource
.
bind
(
this
)
}
onEscape
=
{
this
.
setOriginSource
.
bind
(
this
)
}
onClear
=
{
this
.
setOriginSource
.
bind
(
this
)
}
onClear
=
{
this
.
setOriginSource
.
bind
(
this
)
}
onChange
=
{
this
.
searchNameAndId
.
bind
(
this
)
}
onChange
=
{
this
.
searchNameAndId
.
bind
(
this
)
}
...
@@ -204,7 +210,9 @@ class Experiment extends React.Component<{}, ExpListState> {
...
@@ -204,7 +210,9 @@ class Experiment extends React.Component<{}, ExpListState> {
onColumnClick
:
this
.
onColumnClick
,
onColumnClick
:
this
.
onColumnClick
,
onRender
:
(
item
:
any
):
React
.
ReactNode
=>
(
onRender
:
(
item
:
any
):
React
.
ReactNode
=>
(
<
div
className
=
'succeed-padding'
>
<
div
className
=
'succeed-padding'
>
<
div
>
{
item
.
port
!==
undefined
?
item
.
port
:
'
--
'
}
</
div
>
<
div
className
=
{
item
.
status
===
'
STOPPED
'
?
'
gray-port
'
:
''
}
>
{
item
.
port
!==
undefined
?
item
.
port
:
'
--
'
}
</
div
>
</
div
>
</
div
>
)
)
},
},
...
@@ -277,10 +285,11 @@ class Experiment extends React.Component<{}, ExpListState> {
...
@@ -277,10 +285,11 @@ class Experiment extends React.Component<{}, ExpListState> {
if
(
newValue
===
''
)
{
if
(
newValue
===
''
)
{
this
.
setOriginSource
();
this
.
setOriginSource
();
}
else
{
}
else
{
const
searchInput
=
newValue
.
trim
();
let
result
=
originExperimentList
.
filter
(
let
result
=
originExperimentList
.
filter
(
item
=>
item
=>
item
.
experimentName
.
toLowerCase
().
includes
(
newValue
.
toLowerCase
())
||
item
.
experimentName
.
toLowerCase
().
includes
(
searchInput
.
toLowerCase
())
||
item
.
id
.
toLowerCase
().
includes
(
newValue
.
toLowerCase
())
item
.
id
.
toLowerCase
().
includes
(
searchInput
.
toLowerCase
())
);
);
result
=
this
.
commonSelectString
(
result
,
''
);
result
=
this
.
commonSelectString
(
result
,
''
);
const
sortedResult
=
getSortedSource
(
result
,
sortInfo
);
const
sortedResult
=
getSortedSource
(
result
,
sortInfo
);
...
@@ -290,7 +299,7 @@ class Experiment extends React.Component<{}, ExpListState> {
...
@@ -290,7 +299,7 @@ class Experiment extends React.Component<{}, ExpListState> {
}));
}));
}
}
this
.
setState
(()
=>
({
this
.
setState
(()
=>
({
searchInputVal
:
newValue
searchInputVal
:
newValue
.
trim
()
}));
}));
}
}
}
}
...
@@ -414,7 +423,9 @@ class Experiment extends React.Component<{}, ExpListState> {
...
@@ -414,7 +423,9 @@ class Experiment extends React.Component<{}, ExpListState> {
// reset
// reset
private
setSearchSource
():
void
{
private
setSearchSource
():
void
{
const
{
sortInfo
,
searchInputVal
,
originExperimentList
}
=
this
.
state
;
const
{
sortInfo
,
originExperimentList
}
=
this
.
state
;
let
{
searchInputVal
}
=
this
.
state
;
searchInputVal
=
searchInputVal
.
trim
();
// hert re-search data for fix this status: filter first -> searchBox search result null -> close filter
// hert re-search data for fix this status: filter first -> searchBox search result null -> close filter
const
result
=
originExperimentList
.
filter
(
const
result
=
originExperimentList
.
filter
(
item
=>
item
=>
...
...
ts/webui/src/components/managementExp/TrialIdColumn.tsx
View file @
4784cc6c
...
@@ -19,9 +19,14 @@ class TrialIdColumn extends React.Component<TrialIdColumnProps, {}> {
...
@@ -19,9 +19,14 @@ class TrialIdColumn extends React.Component<TrialIdColumnProps, {}> {
return
(
return
(
<
div
className
=
'succeed-padding ellipsis'
>
<
div
className
=
'succeed-padding ellipsis'
>
{
status
===
'
STOPPED
'
?
(
{
status
===
'
STOPPED
'
?
(
<
div
>
{
id
}
</
div
>
<
div
className
=
'idColor'
>
{
id
}
</
div
>
)
:
(
)
:
(
<
a
href
=
{
webuiPortal
}
className
=
'link'
target
=
'_blank'
rel
=
'noopener noreferrer'
>
<
a
href
=
{
webuiPortal
}
className
=
'link toAnotherExp idColor'
target
=
'_blank'
rel
=
'noopener noreferrer'
>
{
id
}
{
id
}
</
a
>
</
a
>
)
}
)
}
...
...
ts/webui/src/components/overview/params/BasicInfo.tsx
View file @
4784cc6c
...
@@ -36,7 +36,7 @@ export const BasicInfo = (): any => {
...
@@ -36,7 +36,7 @@ export const BasicInfo = (): any => {
<
span
className
=
{
`
${
EXPERIMENT
.
status
}
status-text`
}
>
{
EXPERIMENT
.
status
}
</
span
>
<
span
className
=
{
`
${
EXPERIMENT
.
status
}
status-text`
}
>
{
EXPERIMENT
.
status
}
</
span
>
{
EXPERIMENT
.
status
===
'
ERROR
'
?
(
{
EXPERIMENT
.
status
===
'
ERROR
'
?
(
<
div
>
<
div
>
<
div
className
=
{
styles
.
buttonArea
}
ref
=
{
ref
}
>
<
div
className
=
{
`
${
styles
.
buttonArea
}
error-info-icon`
}
ref
=
{
ref
}
>
<
IconButton
<
IconButton
iconProps
=
{
{
iconName
:
'
info
'
}
}
iconProps
=
{
{
iconName
:
'
info
'
}
}
onClick
=
{
isCalloutVisible
?
onDismiss
:
showCallout
}
onClick
=
{
isCalloutVisible
?
onDismiss
:
showCallout
}
...
...
ts/webui/src/static/model/experimentsManager.ts
View file @
4784cc6c
...
@@ -31,7 +31,8 @@ class ExperimentsManager {
...
@@ -31,7 +31,8 @@ class ExperimentsManager {
}
}
platforms
.
add
(
item
.
platform
);
platforms
.
add
(
item
.
platform
);
}
}
this
.
experimentList
=
data
;
// this.experimentList = data.reverse();
this
.
experimentList
=
data
.
sort
((
a
,
b
)
=>
b
.
startTime
-
a
.
startTime
);
this
.
platform
=
Array
.
from
(
platforms
);
this
.
platform
=
Array
.
from
(
platforms
);
})
})
.
catch
(
error
=>
{
.
catch
(
error
=>
{
...
...
ts/webui/src/static/style/experiment/experiment.scss
View file @
4784cc6c
$pageMargin
:
24px
;
.expBackground
{
.expBackground
{
background
:
#f2f2f2
;
background
:
#f2f2f2
;
height
:
100%
;
height
:
100%
;
.content
{
.content
{
/* TODO: here is 32 rather than $pageMargin is because experiment page `content` position */
margin-top
:
32px
;
margin-bottom
:
$pageMargin
;
background
:
#fff
;
background
:
#fff
;
}
}
}
}
.experimentList
{
.experimentList
{
padding
:
42px
;
padding
:
$pageMargin
42px
;
.ms-DetailsRow
{
&
:hover
,
&
:focus
{
background
:
#F3F2F1
!
important
;
}
}
.box
{
.box
{
margin-top
:
20px
;
.search
{
.search
{
width
:
90%
;
width
:
90%
;
&
-input
{
&
-input
{
width
:
330px
;
width
:
330px
;
}
}
...
@@ -51,14 +66,19 @@
...
@@ -51,14 +66,19 @@
margin-left
:
10px
;
margin-left
:
10px
;
}
}
.tagContainer
{
.idColor
{
width
:
100%
;
color
:
#615f5d
!
important
;
}
.t
ag
{
.t
oAnotherExp
{
font-weight
:
5
00
;
color
:
#
00
71bc
!
important
;
background
:
#f2f2f2
;
}
margin
:
0
4px
;
padding
:
0
6px
;
.ms-DetailsRow
:focus
{
}
background
:
#e1dfdd
;
}
}
}
}
.gray-port
{
color
:
#bebebe
;
}
ts/webui/src/static/style/overview/basic.scss
View file @
4784cc6c
.status
{
.status
{
height
:
21px
;
color
:
#0573bc
;
color
:
#0573bc
;
font-size
:
20px
;
font-size
:
20px
;
font-weight
:
600
;
font-weight
:
600
;
...
@@ -6,10 +7,17 @@
...
@@ -6,10 +7,17 @@
.status-text
{
.status-text
{
display
:
inline-block
;
display
:
inline-block
;
}
}
}
.color
{
/* for overview page: status error info icon's style */
color
:
#333
;
.error-info-icon
{
}
position
:
relative
;
top
:
-4px
;
}
/* error body font-color */
.color
{
color
:
#333
!
important
;
}
}
.inputBox
{
.inputBox
{
...
...
ts/webui/src/static/style/overview/overview.scss
View file @
4784cc6c
...
@@ -65,7 +65,8 @@ $boxGapPadding: 10px;
...
@@ -65,7 +65,8 @@ $boxGapPadding: 10px;
font-family
:
"Segoe UI"
,
Tahoma
,
Geneva
,
Verdana
,
sans-serif
;
font-family
:
"Segoe UI"
,
Tahoma
,
Geneva
,
Verdana
,
sans-serif
;
p
{
p
{
font-size
:
14px
;
font-size
:
14px
;
font-weight
:
normal
;
color
:
#8f8f8f
;
color
:
#8f8f8f
;
span
{
span
{
...
...
ts/webui/src/static/style/trialsDetail.scss
View file @
4784cc6c
...
@@ -51,6 +51,11 @@
...
@@ -51,6 +51,11 @@
}
}
}
}
.detailTable
{
margin-bottom
:
24px
;
background
:
#fff
;
}
.detailTabs
{
.detailTabs
{
padding-left
:
6px
;
padding-left
:
6px
;
padding-right
:
18px
;
padding-right
:
18px
;
...
...
ts/webui/yarn.lock
View file @
4784cc6c
...
@@ -2336,15 +2336,10 @@ acorn-walk@^6.0.1:
...
@@ -2336,15 +2336,10 @@ acorn-walk@^6.0.1:
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
acorn@^5.2.1, acorn@^5.5.3:
acorn@>=8.0.4, acorn@^5.5.3, acorn@^6.0.1, acorn@^6.0.4, acorn@^6.0.5, acorn@^6.0.7:
version "5.7.4"
version "8.0.4"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.4.tgz#3e8d8a9947d0599a1796d10225d7432f4a4acf5e"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.0.4.tgz#7a3ae4191466a6984eee0fe3407a4f3aa9db8354"
integrity sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==
integrity sha512-XNP0PqF1XD19ZlLKvB7cMmnZswW4C/03pRHgirB30uSJTaS3A3V1/P4sS3HPvFmjoriPCJQs+JDSbm4bL1TxGQ==
acorn@^6.0.1, acorn@^6.0.4, acorn@^6.0.5, acorn@^6.0.7:
version "6.4.2"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.2.tgz#35866fd710528e92de10cf06016498e47e39e1e6"
integrity sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==
address@1.1.2, address@^1.0.1:
address@1.1.2, address@^1.0.1:
version "1.1.2"
version "1.1.2"
...
@@ -2645,11 +2640,6 @@ ast-types-flow@0.0.7, ast-types-flow@^0.0.7:
...
@@ -2645,11 +2640,6 @@ ast-types-flow@0.0.7, ast-types-flow@^0.0.7:
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
resolved "https://registry.yarnpkg.com/ast-types-flow/-/ast-types-flow-0.0.7.tgz#f70b735c6bca1a5c9c22d982c3e39e7feba3bdad"
integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
integrity sha1-9wtzXGvKGlycItmCw+Oef+ujva0=
ast-types@0.9.6:
version "0.9.6"
resolved "https://registry.yarnpkg.com/ast-types/-/ast-types-0.9.6.tgz#102c9e9e9005d3e7e3829bf0c4fa24ee862ee9b9"
integrity sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=
astral-regex@^1.0.0:
astral-regex@^1.0.0:
version "1.0.0"
version "1.0.0"
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-1.0.0.tgz#6c8c3fb827dd43ee3918f27b82782ab7658a6fd9"
...
@@ -2914,11 +2904,6 @@ base16@^1.0.0:
...
@@ -2914,11 +2904,6 @@ base16@^1.0.0:
resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70"
resolved "https://registry.yarnpkg.com/base16/-/base16-1.0.0.tgz#e297f60d7ec1014a7a971a39ebc8a98c0b681e70"
integrity sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=
integrity sha1-4pf2DX7BAUp6lxo568ipjAtoHnA=
base62@^1.1.0:
version "1.2.8"
resolved "https://registry.yarnpkg.com/base62/-/base62-1.2.8.tgz#1264cb0fb848d875792877479dbe8bae6bae3428"
integrity sha512-V6YHUbjLxN1ymqNLb1DPHoU1CpfdL7d2YTIp5W3U4hhoG4hhxNmsFDs66M9EXxBiSEke5Bt5dwdfMwwZF70iLA==
base64-js@^1.0.2:
base64-js@^1.0.2:
version "1.5.1"
version "1.5.1"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a"
...
@@ -3734,7 +3719,7 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
...
@@ -3734,7 +3719,7 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
dependencies:
dependencies:
delayed-stream "~1.0.0"
delayed-stream "~1.0.0"
commander@2, commander@^2.11.0, commander@^2.19.0, commander@^2.20.0
, commander@^2.5.0
:
commander@2, commander@^2.11.0, commander@^2.19.0, commander@^2.20.0:
version "2.20.3"
version "2.20.3"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33"
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==
...
@@ -3759,21 +3744,6 @@ commondir@^1.0.1:
...
@@ -3759,21 +3744,6 @@ commondir@^1.0.1:
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b"
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
integrity sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=
commoner@^0.10.1:
version "0.10.8"
resolved "https://registry.yarnpkg.com/commoner/-/commoner-0.10.8.tgz#34fc3672cd24393e8bb47e70caa0293811f4f2c5"
integrity sha1-NPw2cs0kOT6LtH5wyqApOBH08sU=
dependencies:
commander "^2.5.0"
detective "^4.3.1"
glob "^5.0.15"
graceful-fs "^4.1.2"
iconv-lite "^0.4.5"
mkdirp "^0.5.0"
private "^0.1.6"
q "^1.1.2"
recast "^0.11.17"
component-emitter@^1.2.1:
component-emitter@^1.2.1:
version "1.3.0"
version "1.3.0"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
...
@@ -4687,11 +4657,6 @@ define-property@^2.0.2:
...
@@ -4687,11 +4657,6 @@ define-property@^2.0.2:
is-descriptor "^1.0.2"
is-descriptor "^1.0.2"
isobject "^3.0.1"
isobject "^3.0.1"
defined@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693"
integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=
del@^3.0.0:
del@^3.0.0:
version "3.0.0"
version "3.0.0"
resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
resolved "https://registry.yarnpkg.com/del/-/del-3.0.0.tgz#53ecf699ffcbcb39637691ab13baf160819766e5"
...
@@ -4755,14 +4720,6 @@ detect-port-alt@1.1.6:
...
@@ -4755,14 +4720,6 @@ detect-port-alt@1.1.6:
address "^1.0.1"
address "^1.0.1"
debug "^2.6.0"
debug "^2.6.0"
detective@^4.3.1:
version "4.7.1"
resolved "https://registry.yarnpkg.com/detective/-/detective-4.7.1.tgz#0eca7314338442febb6d65da54c10bb1c82b246e"
integrity sha512-H6PmeeUcZloWtdt4DAkFyzFL94arpHr3NOwwmVILFiy+9Qd4JTxxXrzfyGk/lmct2qVGBwTSwSXagqu2BxmWig==
dependencies:
acorn "^5.2.1"
defined "^1.0.0"
dezalgo@^1.0.0, dezalgo@~1.0.3:
dezalgo@^1.0.0, dezalgo@~1.0.3:
version "1.0.3"
version "1.0.3"
resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456"
resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456"
...
@@ -5070,14 +5027,6 @@ env-paths@^2.2.0:
...
@@ -5070,14 +5027,6 @@ env-paths@^2.2.0:
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43"
resolved "https://registry.yarnpkg.com/env-paths/-/env-paths-2.2.0.tgz#cdca557dc009152917d6166e2febe1f039685e43"
integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
integrity sha512-6u0VYSCo/OW6IoD5WCLLy9JUGARbamfSavcNXry/eu8aHVFei6CD3Sw+VGX5alea1i9pgPHW0mbu6Xj0uBh7gA==
envify@^3.0.0:
version "3.4.1"
resolved "https://registry.yarnpkg.com/envify/-/envify-3.4.1.tgz#d7122329e8df1688ba771b12501917c9ce5cbce8"
integrity sha1-1xIjKejfFoi6dxsSUBkXyc5cvOg=
dependencies:
jstransform "^11.0.3"
through "~2.3.4"
err-code@^1.0.0:
err-code@^1.0.0:
version "1.1.2"
version "1.1.2"
resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960"
resolved "https://registry.yarnpkg.com/err-code/-/err-code-1.1.2.tgz#06e0116d3028f6aef4806849eb0ea6a748ae6960"
...
@@ -5382,21 +5331,11 @@ espree@^5.0.1:
...
@@ -5382,21 +5331,11 @@ espree@^5.0.1:
acorn-jsx "^5.0.0"
acorn-jsx "^5.0.0"
eslint-visitor-keys "^1.0.0"
eslint-visitor-keys "^1.0.0"
esprima-fb@^15001.1.0-dev-harmony-fb:
version "15001.1.0-dev-harmony-fb"
resolved "https://registry.yarnpkg.com/esprima-fb/-/esprima-fb-15001.1.0-dev-harmony-fb.tgz#30a947303c6b8d5e955bee2b99b1d233206a6901"
integrity sha1-MKlHMDxrjV6VW+4rmbHSMyBqaQE=
esprima@^4.0.0, esprima@^4.0.1:
esprima@^4.0.0, esprima@^4.0.1:
version "4.0.1"
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==
esprima@~3.1.0:
version "3.1.3"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
esquery@^1.0.1:
esquery@^1.0.1:
version "1.3.1"
version "1.3.1"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.3.1.tgz#b78b5828aa8e214e29fb74c4d5b752e1c033da57"
...
@@ -6167,17 +6106,6 @@ glob-to-regexp@^0.3.0:
...
@@ -6167,17 +6106,6 @@ glob-to-regexp@^0.3.0:
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz#8c5a1494d2066c570cc3bfe4496175acc4d502ab"
integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
integrity sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=
glob@^5.0.15:
version "5.0.15"
resolved "https://registry.yarnpkg.com/glob/-/glob-5.0.15.tgz#1bc936b9e02f4a603fcc222ecf7633d30b8b93b1"
integrity sha1-G8k2ueAvSmA/zCIuz3Yz0wuLk7E=
dependencies:
inflight "^1.0.4"
inherits "2"
minimatch "2 || 3"
once "^1.3.0"
path-is-absolute "^1.0.0"
glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.1.1:
glob@^7.0.0, glob@^7.0.3, glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.1.6, glob@~7.1.1:
version "7.1.6"
version "7.1.6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6"
...
@@ -6662,7 +6590,7 @@ hyphenate-style-name@^1.0.0:
...
@@ -6662,7 +6590,7 @@ hyphenate-style-name@^1.0.0:
resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d"
resolved "https://registry.yarnpkg.com/hyphenate-style-name/-/hyphenate-style-name-1.0.4.tgz#691879af8e220aea5750e8827db4ef62a54e361d"
integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==
integrity sha512-ygGZLjmXfPHj+ZWh6LwbC37l43MhfztxetbFCoYTM2VjkIUpeHgSNn7QIyVFj7YQ1Wl9Cbw5sholVJPzWvC2MQ==
iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.24
, iconv-lite@^0.4.5
:
iconv-lite@0.4, iconv-lite@0.4.24, iconv-lite@^0.4.24:
version "0.4.24"
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
...
@@ -7980,17 +7908,6 @@ jsprim@^1.2.2:
...
@@ -7980,17 +7908,6 @@ jsprim@^1.2.2:
json-schema "0.2.3"
json-schema "0.2.3"
verror "1.10.0"
verror "1.10.0"
jstransform@^11.0.3:
version "11.0.3"
resolved "https://registry.yarnpkg.com/jstransform/-/jstransform-11.0.3.tgz#09a78993e0ae4d4ef4487f6155a91f6190cb4223"
integrity sha1-CaeJk+CuTU70SH9hVakfYZDLQiM=
dependencies:
base62 "^1.1.0"
commoner "^0.10.1"
esprima-fb "^15001.1.0-dev-harmony-fb"
object-assign "^2.0.0"
source-map "^0.4.2"
jsx-ast-utils@^2.0.1:
jsx-ast-utils@^2.0.1:
version "2.4.1"
version "2.4.1"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e"
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.4.1.tgz#1114a4c1209481db06c690c2b4f488cc665f657e"
...
@@ -8823,7 +8740,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
...
@@ -8823,7 +8740,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
"minimatch@2 || 3",
minimatch@3.0.4, minimatch@^3.0.4, minimatch@~3.0.2:
minimatch@3.0.4, minimatch@^3.0.4, minimatch@~3.0.2:
version "3.0.4"
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
...
@@ -9018,7 +8935,7 @@ node-fetch-npm@^2.0.2:
...
@@ -9018,7 +8935,7 @@ node-fetch-npm@^2.0.2:
json-parse-better-errors "^1.0.0"
json-parse-better-errors "^1.0.0"
safe-buffer "^5.1.1"
safe-buffer "^5.1.1"
node-forge@^0.10.0:
node-forge@>=0.10.0,
node-forge@^0.10.0:
version "0.10.0"
version "0.10.0"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
resolved "https://registry.yarnpkg.com/node-forge/-/node-forge-0.10.0.tgz#32dea2afb3e9926f02ee5ce8794902691a676bf3"
integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
integrity sha512-PPmu8eEeG9saEUvI97fm4OYxXVB6bFvyNTyiUOBichBpFG8A1Ljw3bY62+5oOjDEMHRnd0Y7HQ+x7uzxOzC6JA==
...
@@ -9477,11 +9394,6 @@ oauth-sign@~0.9.0:
...
@@ -9477,11 +9394,6 @@ oauth-sign@~0.9.0:
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
object-assign@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-2.1.1.tgz#43c36e5d569ff8e4816c4efa8be02d26967c18aa"
integrity sha1-Q8NuXVaf+OSBbE76i+AtJpZ8GKo=
object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
...
@@ -10872,11 +10784,6 @@ pretty-format@^26.6.2:
...
@@ -10872,11 +10784,6 @@ pretty-format@^26.6.2:
ansi-styles "^4.0.0"
ansi-styles "^4.0.0"
react-is "^17.0.1"
react-is "^17.0.1"
private@^0.1.6, private@~0.1.5:
version "0.1.8"
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
process-nextick-args@~2.0.0:
process-nextick-args@~2.0.0:
version "2.0.1"
version "2.0.1"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
...
@@ -11231,13 +11138,6 @@ react-paginate@^6.3.2:
...
@@ -11231,13 +11138,6 @@ react-paginate@^6.3.2:
dependencies:
dependencies:
prop-types "^15.6.1"
prop-types "^15.6.1"
react-pagination@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/react-pagination/-/react-pagination-1.0.0.tgz#28e605b844c8033c498d2d9f0f5585daf6b84d55"
integrity sha1-KOYFuETIAzxJjS2fD1WF2va4TVU=
dependencies:
react "^0.13.3"
react-responsive@^8.1.1:
react-responsive@^8.1.1:
version "8.2.0"
version "8.2.0"
resolved "https://registry.yarnpkg.com/react-responsive/-/react-responsive-8.2.0.tgz#e0ffb306cfd8f38c9c12e26725b9e1245fa9debc"
resolved "https://registry.yarnpkg.com/react-responsive/-/react-responsive-8.2.0.tgz#e0ffb306cfd8f38c9c12e26725b9e1245fa9debc"
...
@@ -11282,13 +11182,6 @@ react-table@^7.0.0-rc.15:
...
@@ -11282,13 +11182,6 @@ react-table@^7.0.0-rc.15:
resolved "https://registry.yarnpkg.com/react-table/-/react-table-7.6.2.tgz#b60932fa6d457c2bca0da49815cd6a8fe9451f77"
resolved "https://registry.yarnpkg.com/react-table/-/react-table-7.6.2.tgz#b60932fa6d457c2bca0da49815cd6a8fe9451f77"
integrity sha512-urwNZTieb+xg/+BITUIrqdH5jZfJlw7rKVAAq25iXpBPwbQojLCEKJuGycLbVwn8fzU+Ovly3y8HHNaLNrPCvQ==
integrity sha512-urwNZTieb+xg/+BITUIrqdH5jZfJlw7rKVAAq25iXpBPwbQojLCEKJuGycLbVwn8fzU+Ovly3y8HHNaLNrPCvQ==
react@^0.13.3:
version "0.13.3"
resolved "https://registry.yarnpkg.com/react/-/react-0.13.3.tgz#a2dfa85335d7dc02b82b482f089582e64cc13356"
integrity sha1-ot+oUzXX3AK4K0gvCJWC5kzBM1Y=
dependencies:
envify "^3.0.0"
react@^16.8.6:
react@^16.8.6:
version "16.14.0"
version "16.14.0"
resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d"
resolved "https://registry.yarnpkg.com/react/-/react-16.14.0.tgz#94d776ddd0aaa37da3eda8fc5b6b18a4c9a3114d"
...
@@ -11489,16 +11382,6 @@ realpath-native@^1.1.0:
...
@@ -11489,16 +11382,6 @@ realpath-native@^1.1.0:
dependencies:
dependencies:
util.promisify "^1.0.0"
util.promisify "^1.0.0"
recast@^0.11.17:
version "0.11.23"
resolved "https://registry.yarnpkg.com/recast/-/recast-0.11.23.tgz#451fd3004ab1e4df9b4e4b66376b2a21912462d3"
integrity sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=
dependencies:
ast-types "0.9.6"
esprima "~3.1.0"
private "~0.1.5"
source-map "~0.5.0"
recursive-readdir@2.2.2:
recursive-readdir@2.2.2:
version "2.2.2"
version "2.2.2"
resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
resolved "https://registry.yarnpkg.com/recursive-readdir/-/recursive-readdir-2.2.2.tgz#9946fb3274e1628de6e36b2f6714953b4845094f"
...
@@ -12058,15 +11941,10 @@ send@0.17.1:
...
@@ -12058,15 +11941,10 @@ send@0.17.1:
range-parser "~1.2.1"
range-parser "~1.2.1"
statuses "~1.5.0"
statuses "~1.5.0"
serialize-javascript@^1.4.0:
serialize-javascript@>=5.0.1, serialize-javascript@^1.4.0, serialize-javascript@^4.0.0:
version "1.9.1"
version "5.0.1"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.9.1.tgz#cfc200aef77b600c47da9bb8149c943e798c2fdb"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4"
integrity sha512-0Vb/54WJ6k5v8sSWN09S0ora+Hnr+cX40r9F170nT+mSkaxltoE/7R3OrIdBSUv1OoiobH1QoWQbCnAO+e8J1A==
integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==
serialize-javascript@^4.0.0:
version "4.0.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
dependencies:
dependencies:
randombytes "^2.1.0"
randombytes "^2.1.0"
...
@@ -12376,7 +12254,7 @@ source-map@^0.4.2:
...
@@ -12376,7 +12254,7 @@ source-map@^0.4.2:
dependencies:
dependencies:
amdefine ">=0.0.4"
amdefine ">=0.0.4"
source-map@^0.5.0, source-map@^0.5.6
, source-map@~0.5.0
:
source-map@^0.5.0, source-map@^0.5.6:
version "0.5.7"
version "0.5.7"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc"
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=
...
@@ -13019,7 +12897,7 @@ through2@^2.0.0:
...
@@ -13019,7 +12897,7 @@ through2@^2.0.0:
readable-stream "~2.3.6"
readable-stream "~2.3.6"
xtend "~4.0.1"
xtend "~4.0.1"
"through@>=2.2.7 <3", through@^2.3.6
, through@~2.3.4
:
"through@>=2.2.7 <3", through@^2.3.6:
version "2.3.8"
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
...
@@ -14064,12 +13942,7 @@ xtend@^4.0.0, xtend@~4.0.1:
...
@@ -14064,12 +13942,7 @@ xtend@^4.0.0, xtend@~4.0.1:
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
y18n@^4.0.0:
y18n@>=5.0.5, y18n@^4.0.0, y18n@^5.0.5:
version "4.0.1"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-4.0.1.tgz#8db2b83c31c5d75099bb890b23f3094891e247d4"
integrity sha512-wNcy4NvjMYL8gogWWYAO7ZFWFfHcbdbE57tZO8e4cbpj8tfUcwrwqSl3ad8HxpYWCdXcJUCeKKZS62Av1affwQ==
y18n@^5.0.5:
version "5.0.5"
version "5.0.5"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.5.tgz#8769ec08d03b1ea2df2500acef561743bbb9ab18"
integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
integrity sha512-hsRUr4FFrvhhRH12wOdfs38Gy7k2FFzB9qgN9v3aLykRq0dRcdcpz5C9FxdS2NuhOrI/628b/KSTJ3rwHysYSg==
...
...
Prev
1
…
11
12
13
14
15
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment