Skip to content
This repository has been archived by the owner on Mar 10, 2022. It is now read-only.

Commit

Permalink
0.5.0 update with generateMap settings #9
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Aug 25, 2017
1 parent 9d42453 commit d639fd3
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

| Version | Date | Changelog|
| ------- | -------- | ------ |
|0.5.0|25.08.17| — ***[New Settings]*** `liveSassCompile.settings.generateMap` : Set it as `false` if you don't want `.map` file for compiled CSS. Default is `true`. *[[#9](https://github.com/ritwickdey/vscode-live-sass-compiler/pull/9) Thanks [Mark Hewitt](https://github.com/mhco) for the PR].*|
|0.4.0|21.08.17|&mdash; ***[Renamed]*** `liveSassCompile.settings.excludeFolders` is renamed to `liveSassCompile.settings.excludeList`. <br><br>&mdash; ***[Fixed]*** You can set glob pattern to exclude files through `liveSassCompile.settings.excludeList` settings. You can also use negative glob pattern.*[For More details, follow settings section]* <br><br>&mdash; ***[New Settings [#8](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/8) ]*** `liveSassCompile.settings.includeItems` : This setting is useful when you deals with only few of sass files. Only mentioned Sass files will be included. NOTE: No need to include partial sass files. *[Thanks [PatrickPahlke](https://github.com/PatrickPahlke)]*.|
|0.3.4|15.08.17|**[Fixed [#7](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/7)]** Duplicate Output. _[Thanks [Tomekk-hnm](https://github.com/tomekk-hnm)]_.|
|0.3.3|01.08.17|[[#5](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/5)] Critical Fix Update for Linux & macOS. (Thanks a lot to [Shea Fitzek](https://github.com/sheafitzek)). |
Expand Down
17 changes: 11 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,16 +32,16 @@ A VSCode Extension that help you to compile/transpile your SASS/SCSS files to CS
Open VSCode Editor and Press `ctrl+P`, type `ext install live-sass`.

## Settings
* **`liveSassCompile.settings.format` :** To customize exported CSS style - _`expanded`_, _`compact`_, _`compressed`_ or _`nested`_.
* **`liveSassCompile.settings.format`:** To customize exported CSS style - _`expanded`_, _`compact`_, _`compressed`_ or _`nested`_.
* _Default is `expanded`._

* **`liveSassCompile.settings.savePath` :** To customizable file location of exported CSS. Set absulate path from workspace Root.`'/'` stands for your workspace root.
* **`liveSassCompile.settings.savePath`:** To customizable file location of exported CSS. Set absulate path from workspace Root.`'/'` stands for your workspace root.
* _Example: `/subfolder1/subfolder2`. All generated CSS file will be saved at `subfolder2`._
* _NOTE: If destination folder does not exist, folder will be created as well._
* _Default value is `null`, CSS will be generated at same directory of every SASS/SCSS files._
* **`liveSassCompile.settings.extensionName` :** To customize extension name (`.css` or `.min.css`) of generated CSS.
* **`liveSassCompile.settings.extensionName`:** To customize extension name (`.css` or `.min.css`) of generated CSS.
* _Default is `.css`._
* **`liveSassCompile.settings.excludeList` :** To Exclude specific folders. All Sass/Scss files inside the folders will be ignored.
* **`liveSassCompile.settings.excludeList`:** To Exclude specific folders. All Sass/Scss files inside the folders will be ignored.
* _default value :_
```json
[
Expand All @@ -58,7 +58,7 @@ Open VSCode Editor and Press `ctrl+P`, type `ext install live-sass`.
"path/subpath/*[!(file1|file2)].scss"
]
```
* **`liveSassCompile.settings.includeItems` :** This setting is useful when you deals with only few of sass files. Only mentioned Sass files will be included.
* **`liveSassCompile.settings.includeItems`:** This setting is useful when you deals with only few of sass files. Only mentioned Sass files will be included.

* *NOTE: No need to include partial sass files.*
* *Default value is `null`*
Expand All @@ -69,12 +69,16 @@ Open VSCode Editor and Press `ctrl+P`, type `ext install live-sass`.
"path/subpath/b.scss",
]
```
* **`liveSassCompile.settings.generateMap`:** Set it as `false` if you don't want `.map` file for compiled CSS.
* _Default is `true`._

## Extension Dependency
This extension has dependency on _[Live Server](https://marketplace.visualstudio.com/items?itemName=ritwickdey.LiveServer)_ extension for live browser reload.

## What's new ?

* #### Version 0.5.0 (25.08.2017)
* ***[New Settings]*** `liveSassCompile.settings.generateMap` : Set it as `false` if you don't want `.map` file for compiled CSS. Default is `true`. *[[#9](https://github.com/ritwickdey/vscode-live-sass-compiler/pull/9) Thanks [Mark Hewitt](https://github.com/mhco) for the PR].*

* #### Version 0.4.0 (21.08.2017)
* ***[Renamed]*** `liveSassCompile.settings.excludeFolders` is renamed to `liveSassCompile.settings.excludeList`.
Expand Down Expand Up @@ -117,6 +121,7 @@ Inside of the `settings.json`, type following key-value pairs. By the way you'll
"liveSassCompile.settings.excludeList": [
"**/node_modules/**",
".vscode/**"
]
],
"liveSassCompile.settings.generateMap" : true
}
```

0 comments on commit d639fd3

Please sign in to comment.