feat(export): add shareable links (#41)

* feat(export): add shareable links

* chore: reconfigure PW

* test: fix namespace

* style: apply prettier

* chore: reduce workers count in CI for PW

tests are running slower (to the point some time out) and flaky

* fix: initialize pending request from store immediately

* chore: apply rector
This commit is contained in:
Mazen Touati
2026-01-24 03:01:32 +01:00
committed by GitHub
parent 106bba7539
commit 2895a0ddc6
40 changed files with 2401 additions and 190 deletions

View File

@@ -10,7 +10,7 @@
"build": "npm run type:check && npm run vite -- build && cp -a ./resources/dist-static/. ./resources/dist",
"build:dev": "npm run vite -- build --mode=development && cp -a ./resources/dist-static/. ./resources/dist",
"dev": "npm run vite -- dev",
"test": "vitest --config resources/js/tests/vitest.config.js",
"test": "vitest --config resources/js/tests/vitest.config.ts",
"test:ui": "npm run test -- --ui",
"test:run": "npm run test -- run",
"test:coverage": "npm run test:run --coverage",
@@ -28,6 +28,7 @@
"@testing-library/user-event": "^14.6.1",
"@testing-library/vue": "^8.1.0",
"@types/node": "^22.13.5",
"@types/pako": "^2.0.4",
"@typescript-eslint/eslint-plugin": "^8.43.0",
"@typescript-eslint/parser": "^8.43.0",
"@vitejs/plugin-vue": "^5.2.1",
@@ -73,6 +74,7 @@
"codemirror-json-schema": "^0.8.0",
"concurrently": "^9.2.1",
"jsonc-parser": "^3.3.1",
"pako": "^2.1.0",
"pinia": "^3.0.1",
"pinia-plugin-persistedstate": "^4.7.1",
"pretty-bytes": "^7.0.1",
@@ -83,4 +85,4 @@
"vue-codemirror": "^6.1.1",
"vue-sonner": "^2.0.8"
}
}
}