Duplicate CSS + Compression (#1071)

Signed-off-by: Andrey Sobolev <haiodo@gmail.com>
This commit is contained in:
Andrey Sobolev
2022-03-01 10:31:47 +07:00
committed by GitHub
parent b1aa6c1132
commit 5435c4162d
5 changed files with 72 additions and 36 deletions
+8 -3
View File
@@ -13,7 +13,8 @@
"docker:staging": "../../common/scripts/docker_tag.sh hardcoreeng/front staging",
"docker:push": "../../common/scripts/docker_tag.sh hardcoreeng/front",
"lint": "eslint src",
"format": "prettier --write src && eslint --fix src"
"format": "prettier --write src && eslint --fix src",
"run-local": "cross-env MINIO_ACCESS_KEY=minioadmin MINIO_SECRET_KEY=minioadmin MINIO_ENDPOINT=localhost TRANSACTOR_URL=ws:/localhost:3333 SERVER_SECRET='secret' ACCOUNTS_URL=http://localhost:3000 UPLOAD_URL=/files ELASTIC_URL=http://localhost:9200 MODEL_VERSION=$(node ../../models/all/lib/__showversion.js) PUBLIC_DIR='.' ts-node ./src/__start.ts"
},
"devDependencies": {
"@anticrm/platform-rig": "~0.6.0",
@@ -35,7 +36,10 @@
"prettier": "^2.4.1",
"@rushstack/heft": "^0.41.1",
"typescript": "^4.3.5",
"@types/body-parser": "~1.19.2"
"@types/body-parser": "~1.19.2",
"cross-env": "~7.0.3",
"ts-node": "~10.5.0",
"@types/compression": "~1.7.2"
},
"dependencies": {
"@anticrm/core": "~0.6.11",
@@ -50,6 +54,7 @@
"@anticrm/attachment": "~0.6.0",
"@anticrm/contrib": "~0.6.0",
"minio": "^7.0.19",
"body-parser": "~1.19.1"
"body-parser": "~1.19.1",
"compression": "~1.7.4"
}
}