markdown 使用node-sass和nodemon观看CSS设置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 使用node-sass和nodemon观看CSS设置相关的知识,希望对你有一定的参考价值。

# Watch CSS setup with node-sass and nodemon

```
npm install --save-dev node-sass nodemon
```

## Add the following scripts to package.json
### Build CSS
```
"build-css": "node-sass -o css css" 
```
// Where the first 'css' is the destination directory for compiled output. 

// Second 'css' is the source folder with sass/scss files

// -o is shorthand for --output

e.g. `"build-css": "node-sass --output [destination-directory-for-output] [sass-source-file-directory]"`

### Watch CSS

```
"watch-css": "nodemon -e sass -x \"npm run build-css\""
```
// Where the '-e sass' tells nodemon to monitor files with that extension. Shorthand for '--ext'

// (e.g. 'nodemon -e sass,scss' will watch both types of sass files and restart on changes)

// The '-x' (shorthand for '--exec') will execute the following script

以上是关于markdown 使用node-sass和nodemon观看CSS设置的主要内容,如果未能解决你的问题,请参考以下文章

markdown node-sass vs MS Windows.md

node-sass和dart-sass区别(以及解决M1芯片/arm芯片无法使用node-sass的问题)

node-sass安装和使用

node-sass安装和使用

让 SASS 使用 NodeJS Express 和 node-sass 自动编译

在 sass 函数中使用 css 变量 - node-sass