UNPKG
epic-cli
Version:
latest (3.8.1)
3.8.1
3.8.0
3.7.0
3.6.0
3.5.1
3.5.0
3.4.0
3.3.1
3.3.0
3.2.0
3.1.2
3.1.1
3.1.0
3.0.2
3.0.1
3.0.0
2.3.0
2.2.0
2.1.1
2.1.0
2.0.0
1.8.1
1.8.0
1.7.0
1.6.1
1.6.0
1.5.0
1.4.0
1.3.1
1.3.0
1.2.0
1.1.0
1.0.0
Commands useful for everyday web development with node.
github.com/tobua/epic-cli
tobua/epic-cli
epic-cli
/
cli
/
verify.ts
10 lines
(7 loc)
•
258 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{ getScripts, scriptExists }
from
'../helper'
for
(
const
script
of
getScripts
()) {
const
exists =
scriptExists
(script)
if
(exists) {
console
.
warn
(
`epic-cli: Command
${script}
already exists and might not work or will be overwritten.`
) } }