forked from czcorpus/kontext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
launcher-config.json
24 lines (24 loc) · 986 Bytes
/
launcher-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"scripts": {
"devel-server": "node node_modules/webpack/bin/webpack.js serve --config webpack.dev.js",
"build:production": [
"typecheck:client",
"node node_modules/webpack/bin/webpack.js --config webpack.prod.js"
],
"build:production-with-maps": [
"typecheck:client",
"node node_modules/webpack/bin/webpack.js --config webpack.prod.js --env.SOURCE_MAPS"
],
"docker:dev": "docker-compose -f docker-compose.dev.yml up",
"docker:default": "docker-compose -f docker-compose.yml -f docker-compose.ws.yml up",
"docker:mysql": "docker-compose -f docker-compose.yml -f docker-compose.ws.yml -f docker-compose.mysql.yml --env-file .env.mysql up",
"typecheck:client": [
"node scripts/build/mktsconfig.js",
"node_modules/typescript/bin/tsc --project ./.tsconfig.tmp.json --noEmit --skipLibCheck",
{
"condition": "$?",
"sequential-then": "echo 'Client-side TypeScript types: OK'"
}
]
}
}