We updated gulp-sass plugin as well as the sass implementation we use to be compatible with most installation (node-sass is deprecated and incompatible with many systems). Therefore you need to update your code to follow this change.
-
Change the gulp-sass version you are using to
^5.1.0
(package.json file)- "gulp-sass": "^4.0.1", + "gulp-sass": "^5.1.0",
-
Add sass to your package.json:
+ "sass": "^1.48.0",
-
Follow this guide to upgrade your code when using gulp-sass this is an example:
- import sass from 'gulp-sass'; + import gulpSass from 'gulp-sass'; + import realSass from 'sass'; + const sass = gulpSass(realSass);
-
Library chart.js lib has been upgraded from 2.9.3 to 3.7.1. Adjust your package.json as follows:
- "chart.js": "^2.9.3", + "chart.js": "^3.7.1",
Please visit 3.x Migration Guide for more information.