Skip to content

Commit efa4369

Browse files
committed
upgrade vite v5 first part
1 parent 31fce2d commit efa4369

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

03-bundling/06-vite/01-basic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ Let's start with a very basic sample, just add an html plus a simple console log
66

77
## Prerequisites
88

9-
Install [Node.js and npm](https://nodejs.org/en/) (14.18+ / 16+) if they are not already installed on your computer.
9+
Install [Node.js and npm](https://nodejs.org/en/) (18 / 20+) if they are not already installed on your computer.
1010

11-
> ⚠ Verify that you are running at least latest Node LTS version and npm. You can check your current version by running `node -v` and `npm -v` in a terminal/console window. Older versions may produce errors.
11+
> ⚠ Verify that you are running at least latest Node LTS version and npm. You can check your current version by running `node -v` and `npm -v` in a terminal/console window. Older versions may not work.
1212
1313
## Steps
1414

03-bundling/06-vite/01-basic/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"preview": "vite preview"
1010
},
1111
"devDependencies": {
12-
"vite": "^4.5.0"
12+
"vite": "^5.3.3"
1313
}
1414
}

03-bundling/06-vite/02-custom-css/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Let's work with styles. In this demo, we create a custom CSS file which contains
88

99
## Prerequisites
1010

11-
Install [Node.js and npm](https://nodejs.org/en/) (14.18+ / 16+) if they are not already installed on your computer.
11+
Install [Node.js and npm](https://nodejs.org/en/) (18 / 20+) if they are not already installed on your computer.
1212

1313
> ⚠ Verify that you are running at least latest Node LTS version and npm. You can check your current version by running `node -v` and `npm -v` in a terminal/console window. Older versions may produce errors.
1414

03-bundling/06-vite/02-custom-css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
"preview": "vite preview"
1010
},
1111
"devDependencies": {
12-
"vite": "^4.5.0"
12+
"vite": "^5.3.3"
1313
}
1414
}

03-bundling/06-vite/03-sass/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ So far so good. Now it's time to use a more powerful CSS preprocessor like [SASS
88

99
## Prerequisites
1010

11-
Install [Node.js and npm](https://nodejs.org/en/) (14.18+ / 16+) if they are not already installed on your computer.
11+
Install [Node.js and npm](https://nodejs.org/en/) (18 / 20+) if they are not already installed on your computer.
1212

1313
> ⚠ Verify that you are running at least latest Node LTS version and npm. You can check your current version by running `node -v` and `npm -v` in a terminal/console window. Older versions may produce errors.
1414

03-bundling/06-vite/03-sass/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"preview": "vite preview"
1010
},
1111
"devDependencies": {
12-
"sass": "^1.69.5",
13-
"vite": "^4.5.0"
12+
"sass": "^1.77.6",
13+
"vite": "^5.3.3"
1414
}
1515
}

0 commit comments

Comments
 (0)