Move locale pack from private/ to @uppy/locales (#5801)

This commit is contained in:
Merlijn Vos 2025-07-07 11:02:29 +02:00 committed by GitHub
parent 36097dc67e
commit bfb4b5c9cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 19 additions and 39 deletions

View file

@ -24,7 +24,7 @@
"build:css": "yarn node ./bin/build-css.js && yarn workspace @uppy/components build:tailwind && yarn node ./bin/copy-tailwind-css.mjs",
"build:js": "npm-run-all build:js:typeless build:locale-pack build:angular build:bundle",
"build:js:typeless": "npm-run-all build:companion build:svelte",
"build:locale-pack": "yarn workspace @uppy-dev/locale-pack build && yarn workspace @uppy-dev/locale-pack test unused",
"build:locale-pack": "yarn workspace @uppy/locales build && yarn workspace @uppy/locales test",
"build:svelte": "yarn workspace @uppy/svelte build",
"check": "yarn exec biome check --write",
"check:ci": "yarn exec biome ci",
@ -41,12 +41,10 @@
"size": "echo 'JS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.js | gzip | wc -c && echo 'CSS Bundle mingz:' && cat ./packages/uppy/dist/uppy.min.css | gzip | wc -c",
"start:companion": "bash bin/companion.sh",
"start:companion:with-loadbalancer": "e2e/start-companion-with-load-balancer.mjs",
"test": "npm-run-all lint test:locale-packs:unused test:unit test:companion",
"test": "npm-run-all lint test:locale-pack test:unit test:companion",
"test:companion": "yarn workspace @uppy/companion test",
"test:companion:watch": "yarn workspace @uppy/companion test --watch",
"test:locale-packs": "yarn locale-packs:unused && yarn locale-packs:warnings",
"test:locale-packs:unused": "yarn workspace @uppy-dev/locale-pack test unused",
"test:locale-packs:warnings": "yarn workspace @uppy-dev/locale-pack test warnings",
"test:locale-pack": "yarn workspace @uppy/locales test",
"test:ts": "yarn tsc -b && yarn workspace @uppy/svelte check",
"test:unit": "yarn run build && yarn test:watch --run",
"test:watch": "vitest --environment jsdom --dir packages/@uppy",