Skip to content

Commit

Permalink
feat: Add Vite 6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSeally committed Dec 19, 2024
1 parent 738982a commit a22e3ff
Show file tree
Hide file tree
Showing 4 changed files with 1,187 additions and 979 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

This project adheres to [Semantic Versioning](http://semver.org/).

# 1.0.6
- Add Vite 5.0 support

# 1.0.5
- Add Vite 5.0 support

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Plugin uses Vite specific hook (`transformIndexHtml`) for transforming pug into
- Node.js version depends on Vite version:
- Vite v2 requires Node.js v12.22 or higher;
- Vite v3, v4 requires Node.js v14.18 or higher;
- Vite v5 requires Node.js v18 or higher;
- Vite v5, v6 requires Node.js 18, 20, and 22+;

## Installation
You can use any package manager to install plugin:
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "vite-plugin-pug-transformer",
"version": "1.0.5",
"version": "1.0.6",
"description": "Vite plugin for supporting pug templates",
"main": "src/index.js",
"scripts": {
Expand All @@ -26,12 +26,12 @@
"type": "module",
"homepage": "https://github.com/TheSeally/vite-plugin-pug-transformer#readme",
"devDependencies": {
"eslint": "^8.57.0",
"eslint": "^8.57.1",
"uvu": "^0.5.6",
"vite": "^5.4.8"
"vite": "^6.0.4"
},
"dependencies": {
"picocolors": "^1.0.1",
"picocolors": "^1.1.1",
"pug": "^3.0.3"
},
"peerDependencies": {
Expand Down
Loading

0 comments on commit a22e3ff

Please sign in to comment.