更新文档

master
宇天 2021-06-30 14:42:52 +08:00
parent 9391e66e00
commit 692a0539b2
2 changed files with 8 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# scss-to-css # scss-to-css
> The easiest way to compile scss file to css without using other tools like `webpack`. And autoprefixer at the same time. > It can be used for simple compilation/compression of scss files without installing various front-end engineering tools (webpack, etc.).
[![Version](https://vsmarketplacebadge.apphb.com/version-short/yutent.scss-to-css.svg)](https://marketplace.visualstudio.com/items?itemName=yutent.scss-to-css) [![Version](https://vsmarketplacebadge.apphb.com/version-short/yutent.scss-to-css.svg)](https://marketplace.visualstudio.com/items?itemName=yutent.scss-to-css)
[![Rating](https://vsmarketplacebadge.apphb.com/rating-short/yutent.scss-to-css.svg)](https://marketplace.visualstudio.com/items?itemName=yutent.scss-to-css) [![Rating](https://vsmarketplacebadge.apphb.com/rating-short/yutent.scss-to-css.svg)](https://marketplace.visualstudio.com/items?itemName=yutent.scss-to-css)
@ -14,8 +14,8 @@ Live demo:
![demo](./demo.gif) ![demo](./demo.gif)
## Why Scss-to-css ## Why Scss-to-css
> For some small project or teaching speech. It's too fat to deploy a webpack env. > For small projects, various engineering tools such as webpack are too heavy and cumbersome to configure. And a lot of modules have to be installed.
> Now, `scss-to-css` help us to compile scss file to css file at a none webpack project and autoprefixer. > Sometimes, we just want to simply use the convenience brought by scss. So for this purpose, I wrote a vsc plug-in, which can be automatically compiled into a css file (stored in the current directory by default) when the scss file is saved, and the browser prefix is automatically completed.
## Configuration ## Configuration
@ -31,7 +31,9 @@ Live demo:
## Dependencies ## Dependencies
> We use `node-sass` instead of `libsass` > We use `node-sass`(Deprecated in 3.1.0) instead of `libsass`.
>> v3.1.0 uses `sass` instead. No need to install node-sass globally
- `node-sass`, You need to install this module manually. Maybe `root` is required on linux. - `node-sass`, You need to install this module manually. Maybe `root` is required on linux.

View File

@ -29,7 +29,8 @@
## 依赖 ## 依赖
> 3.x之后, 弃用libsass,改为node-sass, 但由于vscode的限制, node-sass在拓展里使用会有问题, 所以需要手动全局安装。 > 3.x之后, 弃用`libsass`,改为`node-sass`, 但由于vscode的限制, `node-sass`在拓展里使用会有问题, 所以需要手动全局安装。
>> v3.1.0改用并内置`sass`, 无需全局安装`node-sass`了。
- `node-sass`, 需要手动安装这个模块, 执行`npm i -g node-sass`, 在linux下, 可能需要root权限才可以安装。 - `node-sass`, 需要手动安装这个模块, 执行`npm i -g node-sass`, 在linux下, 可能需要root权限才可以安装。