mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-30 19:20:42 +00:00
* test(worklog): verify archived duration corrections persist * ci(android): run JVM tests on pull requests Run the Play and F-Droid debug JVM suites for Android-affecting changes while keeping a stable required-check status on unrelated PRs.\n\nCloses #8734 * test(supersync): run repair causality integration test Include the PostgreSQL repair-causality regression in the CI integration script's explicit test list.\n\nCloses #8773 * ci(sync): close provider E2E path gaps Select both real-provider suites for every persistent action owner and the client clock, date, and replay guards. Mirror the same coverage on master and release pushes.\n\nRefs #8733\nRefs #9262 * ci(android): run instrumentation tests on emulator Use the AndroidX test runner and execute the Play debug instrumentation suite on an API 35 emulator for Android-affecting pull requests. This gates the on-device CursorWindow data-loss regression.\n\nRefs #8401\nRefs #9262 * ci(shared-schema): run package tests * ci(plugins): discover test suites from manifests Closes #8733 * test(boards): verify board creation persists * test(migration): require legacy error recovery flow * test(navigation): remove redundant route smoke * test(keyboard): verify default shortcut behavior * test(migration): verify error acknowledgement cleanup * test(worklog): verify corrected time CSV export * test(keyboard): verify remapped shortcut persistence * test(recurring): verify occurrence and series removal * test(mobile): add WebKit touch smoke * test(pwa): verify persisted offline reload * test(pwa): verify update activation * test(performance): verify large-list row reuse * test(webdav): cover split migration recovery Exercise a real v2-to-v3 migration through WebDAV when the primary tombstone commits but its response is lost. Verify restart recovery, backup neutralization, pending-data survival, and the split-disabled no-write guard.
36 lines
1.1 KiB
JSON
36 lines
1.1 KiB
JSON
{
|
|
"name": "boilerplate-solid-js",
|
|
"version": "1.0.0",
|
|
"description": "Solid.js Boilerplate Plugin for Super Productivity",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"lint": "eslint .",
|
|
"format": "prettier --write .",
|
|
"typecheck": "tsc --noEmit",
|
|
"package": "node scripts/build-plugin.js",
|
|
"deploy": "npm run build"
|
|
},
|
|
"devDependencies": {
|
|
"@solidjs/router": "^0.15.4",
|
|
"@solidjs/testing-library": "^0.8.10",
|
|
"@super-productivity/plugin-api": "file:../../plugin-api",
|
|
"@super-productivity/vite-plugin": "file:../../vite-plugin",
|
|
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
|
"@typescript-eslint/parser": "^8.48.0",
|
|
"archiver": "^7.0.1",
|
|
"eslint": "^9.39.1",
|
|
"eslint-config-prettier": "^10.1.8",
|
|
"eslint-plugin-prettier": "^5.5.4",
|
|
"eslint-plugin-solid": "^0.14.5",
|
|
"jsdom": "^27.2.0",
|
|
"prettier": "^3.6.2",
|
|
"solid-js": "^1.9.11",
|
|
"typescript": "^5.9.3",
|
|
"vite": "^7.2.4",
|
|
"vite-plugin-solid": "^2.11.10",
|
|
"vitest": "^4.0.14"
|
|
}
|
|
}
|