UNPKG
@prisma-cms/webrtc-module
Version:
latest (1.3.4)
1.3.4
1.3.3
1.3.2
1.3.1
1.3.0
WebRTC module for @prisma-cms
github.com/prisma-cms/webrtc-module
prisma-cms/webrtc-module
@prisma-cms/webrtc-module
/
src
/
server
/
scripts
/
deploy
/
with-prisma.mjs
17 lines
(11 loc)
•
202 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import
chalk
from
"chalk"
;
import
{ deploy, }
from
"./"
;
import
{ generateSchema }
from
"./schema"
try
{
deploy
(generateSchema) }
catch
(error) {
console
.
error
(chalk.
red
(
"error"
), error); };