FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
ToolJet/cli/bin/dev at develop · low-code-flow/ToolJet · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
low-code-flow
/
ToolJet
Public
forked from
ToolJet/ToolJet
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
2
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
ToolJet
/
cli
/
bin
/
dev
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
17 lines (11 loc) · 418 Bytes
Breadcrumbs
ToolJet
/
cli
/
bin
/
dev
Copy path
File metadata and controls
executable file
·
17 lines (11 loc) · 418 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env node
const
oclif
=
require
(
'@oclif/core'
)
const
path
=
require
(
'path'
)
const
project
=
path
.
join
(
__dirname
,
'..'
,
'tsconfig.json'
)
// In dev mode -> use ts-node and dev plugins
process
.
env
.
NODE_ENV
=
'development'
require
(
'ts-node'
)
.
register
(
{
project
}
)
// In dev mode, always show stack traces
oclif
.
settings
.
debug
=
true
;
// Start the CLI
oclif
.
run
(
)
.
then
(
oclif
.
flush
)
.
catch
(
oclif
.
Errors
.
handle
)
Back
|
FazBrowse Home
|
New Git URL