1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-07-17 13:46:47 +02:00

fix: removed docs folder and replaced with openapi-static (#10042)

https://github.com/Unleash/unleash/actions/runs/15298694489/job/43037677429#step:10:360
we are failing to copy docs because we removed them
This commit is contained in:
Gastón Fournier 2025-05-28 14:35:49 +02:00 committed by GitHub
parent ff83f934d5
commit f296961a29
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,7 +13,7 @@
],
"files": [
"dist",
"docs",
"openapi-static",
"frontend/build",
"frontend/build/*",
"frontend/build/**/*",
@ -50,7 +50,7 @@
"db-migrate": "db-migrate --migrations-dir ./src/migrations",
"lint": "biome check .",
"lint:fix": "biome check . --write",
"local:package": "del-cli --force build && mkdir build && cp -r dist docs CHANGELOG.md LICENSE README.md package.json build",
"local:package": "del-cli --force build && mkdir build && cp -r dist openapi-static CHANGELOG.md LICENSE README.md package.json build",
"build:watch": "tsc -w",
"prepare": "husky && yarn --cwd ./frontend install && if [ ! -d ./dist ]; then yarn build; fi",
"test": "PORT=4243 vitest run",