diff options
author | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-05 20:32:22 +0200 |
---|---|---|
committer | Flam3rboy <34555296+Flam3rboy@users.noreply.github.com> | 2021-10-05 20:32:22 +0200 |
commit | d58e0a7abb23fa4634c22dbf6f6f0a17164be6ab (patch) | |
tree | 6ba6590c49e8a62336ba0f2a9ec1740e38ee5b91 | |
parent | :bug: fix set user settings (diff) | |
download | server-d58e0a7abb23fa4634c22dbf6f6f0a17164be6ab.tar.xz |
:art: add build script to bundle setup
-rw-r--r-- | bundle/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle/package.json b/bundle/package.json index aaba48d5..5165e2a3 100644 --- a/bundle/package.json +++ b/bundle/package.json @@ -4,7 +4,7 @@ "description": "", "main": "src/start.js", "scripts": { - "setup": "cd ../util && npm --production=false i && cd ../api && npm --production=false i && cd ../cdn && npm --production=false i && cd ../gateway && npm --production=false i || npm install", + "setup": "cd ../util && npm --production=false i && cd ../api && npm --production=false i && cd ../cdn && npm --production=false i && cd ../gateway && npm --production=false i && cd ../bundle/ && npm install && npm run build", "build": "npm run build:util && npm run build:api && npm run build:cdn && npm run build:gateway && npm run build:bundle", "postinstall": "ts-patch install -s", "build:bundle": "npx tsc -b .", |