UNPKG
@commercetools-frontend/checkly-cli
Version:
latest (0.1.2)
0.1.2
0.1.1
0.1.0
0.0.0
Internal CLI to interact with the Checkly API.
@commercetools-frontend/checkly-cli
/
bin
/
cli.js
10 lines
(7 loc)
•
240 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
#!/usr/bin/env node
// eslint-disable-next-line import/extensions
const
{ run } =
require
(
'@commercetools-frontend/checkly-cli/cli'
);
run
().
catch
(
(
error
) =>
{
console
.
error
(error.
message
|| error.
stack
|| error); process.
exit
(
1
); });