Skip to content

Commit

Permalink
Fixed: Peer Dep versioning (#22)
Browse files Browse the repository at this point in the history
Co-authored-by: AdrianGonz97 <[email protected]>
  • Loading branch information
niktek and AdrianGonz97 authored Dec 15, 2023
1 parent 2b6b12f commit fc84d65
Show file tree
Hide file tree
Showing 8 changed files with 249 additions and 90 deletions.
5 changes: 5 additions & 0 deletions .changeset/sixty-oranges-accept.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'vite-plugin-tailwind-purgecss': minor
---

feat: Added support for Vite 5
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
dist
*.log
*.log
.DS_Store
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@
"name": "vite-plugin-tailwind-purgecss",
"version": "0.1.4",
"description": "Vite plugin for PurgeCSS",
"module": "dist/index.mjs",
"module": "dist/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"repository": {
"url": "https://github.com/AdrianGonz97/vite-plugin-tailwind-purgecss",
"type": "git"
},
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"scripts": {
Expand Down Expand Up @@ -46,12 +46,12 @@
"prettier": "^2.8.1",
"tsup": "^6.5.0",
"typescript": "^4.9.4",
"vite": "^4.1.1"
"vite": "^5.0.0"
},
"files": [
"dist"
],
"peerDependencies": {
"vite": "^4.1.1"
"vite": "^4.1.1 || ^5.0.0"
}
}
Loading

0 comments on commit fc84d65

Please sign in to comment.