UNPKG
@aptpod/data-viz-create-visual-parts-react
Version:
beta (1.7.0-beta.1)
latest (1.7.0)
1.7.0
1.7.0-beta.1
1.7.0-beta.0
1.6.0
1.6.0-beta.1
1.6.0-beta.0
1.5.0
1.5.0-beta.2
1.5.0-beta.1
1.5.0-beta.0
1.4.0
1.4.0-beta.6
1.4.0-beta.5
1.4.0-beta.4
1.4.0-beta.3
1.4.0-beta.2
1.4.0-beta.1
1.4.0-beta.0
1.3.0
1.3.0-beta.4
1.3.0-beta.3
1.3.0-beta.2
1.3.0-beta.1
1.3.0-beta.0
1.2.0
1.2.0-beta.2
1.2.0-beta.1
1.2.0-beta.0
1.1.0
1.1.0-beta.1
1.1.0-beta.0
1.0.1
1.0.1-beta.1
1.0.1-beta.0
1.0.0
1.0.0-beta.2
1.0.0-beta.1
0.0.24
0.0.24-beta.0
0.0.23
0.0.23-beta.2
0.0.23-beta.1
0.0.23-beta.0
0.0.22
0.0.21
0.0.20
0.0.19
0.0.18
0.0.17
0.0.16
0.0.15
template of npm project with typescript
@aptpod/data-viz-create-visual-parts-react
/
bin
/
index.js
14 lines
(11 loc)
•
211 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env node
const
process =
require
(
'process'
)
const
{ run } =
require
(
'../lib'
)
try
{
run
().
then
(
() =>
{ process.
exit
(
0
) }) }
catch
(error) {
console
.
log
(
'[LOG]'
, error) process.
exit
(
1
) }