1. I have trying to convert **.sass** files to **.css** and minified **min.css** files using node js command line.
2. In my code, sass files converted to minified css. but my problem is prefix(.min.css) is not added to the minified file.
嗨,
As I have trying to convert **.sass** files to **.css** and minified **min.css** files using node js command line. In my code, sass files converted to minified css. but my problem is prefix(.min.css) is not added to the minified file. Here, have attached my tried code.
npm install --save-dev sass
package.json
{
"scripts": {
"build-css": "sass --watch jds-scss:css1 --style=compressed"
},
"dependencies": {
"sass": "^1.58.3"
},
}
运行后,npm run build-css
源文件:jds-scss 目标文件:css1
请检查并告诉我
谢谢,