需要使用 Node js 命令将 sass 转换为 css 和缩小的 css

问题描述 投票:0回答:0
   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"
     },
   }

Minified_css_screen_shot_1 sass_screen_shot_2

运行后,npm run build-css

源文件:jds-scss 目标文件:css1

请检查并告诉我

谢谢,

css node.js npm npm-install minify
最新问题
© www.soinside.com 2019 - 2025. All rights reserved.