Skip to content

chore: move to tailwind 4 #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7,057 changes: 4,323 additions & 2,734 deletions package-lock.json

Large diffs are not rendered by default.

61 changes: 32 additions & 29 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@friendofsvelte/tipex",
"version": "0.0.7-fix-1",
"version": "0.0.8-dev.0",
"keywords": [
"svelte",
"text editor",
Expand All @@ -23,9 +23,6 @@
"build": "vite build && npm run package",
"preview": "vite preview",
"package": "svelte-kit sync && svelte-package && publint",
"prepareTipexCss": "postcss --dir ./dist/tipex/styles --config ./postcss.config.js ./dist/tipex/styles/*.css && postcss src/app.postcss -o dist/tipex/styles/app.css",
"packageTipex": "npm run package && npm run prepareTipexCss",
"prepublishOnly": "npm run packageTipex",
"test": "npm run test:integration && npm run test:unit",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
Expand All @@ -50,35 +47,37 @@
"svelte": "^5.0.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.5",
"@eslint/js": "^9.18.0",
"@friendofsvelte/toggle": "0.0.2-svelte.5.docup",
"@playwright/test": "^1.28.1",
"@sveltejs/adapter-cloudflare": "^4.7.4",
"@tailwindcss/typography": "^0.5.13",
"svelte-highlight": "^7.4.1",
"tslib": "^2.4.1",
"@sveltejs/kit": "^2.0.0",
"@playwright/test": "^1.49.1",
"@sveltejs/adapter-cloudflare": "^5.0.1",
"@sveltejs/kit": "^2.16.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^4.0.0",
"@types/eslint": "^9.6.0",
"@sveltejs/vite-plugin-svelte": "^5.0.0",
"@tailwindcss/typography": "^0.5.13",
"@tailwindcss/vite": "^4.0.14",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/svelte": "^5.2.4",
"@types/node": "^22.13.10",
"autoprefixer": "^10.4.20",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.36.0",
"globals": "^15.0.0",
"prettier": "^3.3.2",
"prettier-plugin-svelte": "^3.2.6",
"prettier-plugin-tailwindcss": "^0.6.5",
"publint": "^0.2.0",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-svelte": "^3.0.0",
"globals": "^16.0.0",
"jsdom": "^26.0.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"publint": "^0.3.2",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"tailwindcss": "^3.4.9",
"tailwindcss": "^4.0.0",
"tslib": "^2.4.1",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^5.0.11",
"vitest": "^2.0.4",
"postcss": "^8.4.38",
"postcss-cli": "^10.1.0",
"postcss-load-config": "^4.0.1"
"typescript-eslint": "^8.20.0",
"vite": "^6.0.0",
"vitest": "^3.0.0"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand All @@ -93,8 +92,12 @@
"@tiptap/extension-placeholder": "^2.1.13",
"@tiptap/pm": "^2.1.13",
"@tiptap/starter-kit": "^2.1.13",
"iconify-icon": "^1.0.8",
"lowlight": "^2.9.0"
"clsx": "^2.1.1",
"iconify-icon": "^1.0.8",
"lowlight": "^2.9.0",
"svelte-highlight": "^7.8.2",
"tailwind-merge": "^3.0.2",
"tailwind-variants": "^1.0.0"
},
"overrides": {}
}
Loading