-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update deps, cleanup error handling
- Loading branch information
Showing
32 changed files
with
690 additions
and
1,041 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 |
---|---|---|
|
@@ -22,29 +22,23 @@ | |
"lint": "pnpm format && pnpm eslint --fix \"./src/**/*.{ts,svelte}\"" | ||
}, | ||
"devDependencies": { | ||
"@cypress/vite-dev-server": "^5.0.4", | ||
"@cypress/vite-dev-server": "^5.0.6", | ||
"@iconify/svelte": "^3.1.4", | ||
"@poppanator/sveltekit-svg": "^3.0.0", | ||
"@popperjs/core": "^2.11.6", | ||
"@portabletext/svelte": "^2.0.0", | ||
"@poppanator/sveltekit-svg": "^4.1.3", | ||
"@portabletext/svelte": "2.1.1", | ||
"@portabletext/types": "^2.0.6", | ||
"@rgossiaux/svelte-headlessui": "^1.0.2", | ||
"@rollup/plugin-commonjs": "^25.0.2", | ||
"@rollup/plugin-node-resolve": "^15.0.2", | ||
"@sanity/image-url": "^1.0.2", | ||
"@sveltejs/adapter-netlify": "^2.0.7", | ||
"@sveltejs/adapter-node": "^1.0.0", | ||
"@sveltejs/adapter-netlify": "^2.0.8", | ||
"@sveltejs/adapter-node": "^1.3.1", | ||
"@sveltejs/kit": "^1.25.0", | ||
"@tailwindcss/aspect-ratio": "^0.4.2", | ||
"@testing-library/cypress": "^9.0.0", | ||
"@testing-library/svelte": "^3.2.2", | ||
"@types/jsonwebtoken": "^9.0.1", | ||
"@typescript-eslint/eslint-plugin": "^5.62.0", | ||
"@typescript-eslint/parser": "^5.62.0", | ||
"@vitest/ui": "^0.32.2", | ||
"autoprefixer": "^10.4.14", | ||
"cypress": "12.14.0", | ||
"devalue": "4.3.2", | ||
"cypress": "^13.2.0", | ||
"dotenv": "^16.0.3", | ||
"eslint": "^8.32.0", | ||
"eslint-config-prettier": "^9.0.0", | ||
|
@@ -62,28 +56,30 @@ | |
"prettier-plugin-tailwindcss": "^0.2.2", | ||
"rimraf": "^4.4.1", | ||
"sass": "^1.58.3", | ||
"svelte": "^4.2.0", | ||
"svelte": "^4.2.1", | ||
"svelte-body": "^1.4.0", | ||
"svelte-breakpoints": "0.2.0", | ||
"svelte-check": "^3.4.3", | ||
"svelte-eslint-parser": "^0.32.2", | ||
"svelte-check": "^3.5.2", | ||
"svelte-eslint-parser": "^0.33.0", | ||
"svelte-highlight": "^7.3.0", | ||
"svelte-maybe-transition": "^0.1.2", | ||
"svelte-preprocess": "^5.0.4", | ||
"tailwindcss": "^3.3.2", | ||
"terser": "^5.16.3", | ||
"tailwindcss": "^3.3.3", | ||
"tippy.js": "^6.3.7", | ||
"ts-essentials": "^9.3.0", | ||
"tslib": "^2.5.0", | ||
"typescript": "^5.2.2", | ||
"vite": "^4.4.9", | ||
"vite-plugin-inspect": "^0.7.35", | ||
"vite-plugin-inspect": "^0.7.38", | ||
"vite-plugin-test-selectors": "0.0.2", | ||
"vitest": "^0.32.0" | ||
"vitest": "^0.34.5" | ||
}, | ||
"type": "module", | ||
"dependencies": { | ||
"pixelarticons": "^1.7.0", | ||
"twemoji": "^14.0.2" | ||
}, | ||
"pnpm": { | ||
"patchedDependencies": { | ||
"@portabletext/[email protected]": "patches/@[email protected]" | ||
} | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,17 @@ | ||
diff --git a/package.json b/package.json | ||
index c79742c0b47eacb674bf8aed4a4db2341e7d29f5..87dbb5e51690f3d4b8817b27b993065b57457799 100644 | ||
--- a/package.json | ||
+++ b/package.json | ||
@@ -15,10 +15,11 @@ | ||
"exports": { | ||
".": { | ||
"types": "./dist/index.d.ts", | ||
- "default": "./dist/bar.js", | ||
+ "default": "./dist/index.js", | ||
"svelte": "./dist/index.js" | ||
} | ||
}, | ||
+ "types": "./dist/index.d.ts", | ||
"files": [ | ||
"dist" | ||
], |
Oops, something went wrong.