-
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat(data-migration): start working on PB data migration Signed-off-by: Robert Goniszewski <[email protected]> * feat(metadata): enhance performance logging and URL display Signed-off-by: Robert Goniszewski <[email protected]> * refactor(utils): enhance performance logging format Signed-off-by: Robert Goniszewski <[email protected]> * chore(deps): update development and production dependencies Signed-off-by: Robert Goniszewski <[email protected]> * feat(migration): implement data migration UI and functionality Signed-off-by: Robert Goniszewski <[email protected]> * feat(database): update foreign key constraints for cascading deletes Signed-off-by: Robert Goniszewski <[email protected]> * feat(bookmark): optimize image storage and improve first-time user experience Signed-off-by: Robert Goniszewski <[email protected]> * feat(various): finish migration tool preview, improve file handling Signed-off-by: Robert Goniszewski <[email protected]> * feat(setup): simplify installation process and update dependencies Signed-off-by: Robert Goniszewski <[email protected]> * chore: release v0.4.0-pre.4 --------- Signed-off-by: Robert Goniszewski <[email protected]>
- Loading branch information
1 parent
7612593
commit d95f4d2
Showing
23 changed files
with
1,261 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,5 @@ vite.config.ts.timestamp-* | |
coverage | ||
data/db* | ||
data/user-uploads/* | ||
data/temp/* | ||
!data/user-uploads/.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "grimoire", | ||
"version": "0.4.0-pre.3", | ||
"version": "0.4.0-pre.4", | ||
"description": "Bookmark manager for the wizards 🧙", | ||
"author": "Robert Goniszewski <[email protected]>", | ||
"main": "./build/index.js", | ||
|
@@ -39,55 +39,57 @@ | |
}, | ||
"type": "module", | ||
"devDependencies": { | ||
"@libsql/client": "^0.10.0", | ||
"@libsql/client": "^0.11.0", | ||
"@sveltejs/adapter-auto": "^3.2.4", | ||
"@sveltejs/kit": "^2.5.24", | ||
"@sveltejs/kit": "^2.5.27", | ||
"@tailwindcss/typography": "^0.5.14", | ||
"@types/bun": "^1.1.8", | ||
"@types/adm-zip": "^0.5.5", | ||
"@types/bun": "^1.1.9", | ||
"@types/express": "^4.17.21", | ||
"@types/express-http-proxy": "^1.6.6", | ||
"@types/swagger-ui": "^3.52.4", | ||
"@typescript-eslint/eslint-plugin": "^8.3.0", | ||
"@typescript-eslint/parser": "^8.3.0", | ||
"@vitest/coverage-v8": "^2.0.5", | ||
"@typescript-eslint/eslint-plugin": "^8.5.0", | ||
"@typescript-eslint/parser": "^8.5.0", | ||
"@vitest/coverage-v8": "^2.1.1", | ||
"autoprefixer": "^10.4.20", | ||
"drizzle-kit": "^0.24.2", | ||
"eslint": "^9.9.1", | ||
"eslint": "^9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-perfectionist": "^3.3.0", | ||
"eslint-plugin-svelte": "^2.43.0", | ||
"postcss": "^8.4.41", | ||
"eslint-plugin-perfectionist": "^3.6.0", | ||
"eslint-plugin-svelte": "^2.44.0", | ||
"postcss": "^8.4.47", | ||
"prettier": "^3.3.3", | ||
"prettier-plugin-svelte": "^3.2.6", | ||
"prettier-plugin-tailwindcss": "^0.6.6", | ||
"release-it": "^17.6.0", | ||
"svelte": "^4.2.19", | ||
"svelte-adapter-bun": "^0.5.2", | ||
"svelte-check": "^3.8.6", | ||
"tailwindcss": "^3.4.10", | ||
"svelte-check": "^4.0.2", | ||
"tailwindcss": "^3.4.11", | ||
"tslib": "^2.7.0", | ||
"typescript": "^5.5.4", | ||
"vite": "^5.4.2", | ||
"vitest": "^2.0.5" | ||
"typescript": "^5.6.2", | ||
"vite": "^5.4.5", | ||
"vitest": "^2.1.1" | ||
}, | ||
"dependencies": { | ||
"@extractus/article-extractor": "^8.0.10", | ||
"@lucia-auth/adapter-drizzle": "^1.1.0", | ||
"@sveltejs/vite-plugin-svelte": "^3.1.2", | ||
"@tabler/icons": "^3.14.0", | ||
"@tabler/icons-svelte": "^3.14.0", | ||
"@tabler/icons": "^3.16.0", | ||
"@tabler/icons-svelte": "^3.16.0", | ||
"@tailwindcss/line-clamp": "^0.4.4", | ||
"@types/html-to-text": "^9.0.4", | ||
"@types/lodash": "^4.17.7", | ||
"@types/sanitize-html": "^2.13.0", | ||
"adm-zip": "^0.5.16", | ||
"chalk": "^5.3.0", | ||
"daisyui": "^4.12.10", | ||
"dotenv": "^16.4.5", | ||
"drizzle-orm": "^0.33.0", | ||
"eslint-plugin-drizzle": "^0.2.3", | ||
"express": "^4.19.2", | ||
"express": "^4.21.0", | ||
"fuse.js": "^7.0.0", | ||
"html-to-text": "^9.0.5", | ||
"http-proxy-middleware": "^3.0.0", | ||
"joi": "^17.13.3", | ||
"lodash": "^4.17.21", | ||
"lucia": "^3.2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.