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

Commit

Permalink
v2.0.0 update
Browse files Browse the repository at this point in the history
  • Loading branch information
ritwickdey committed Jun 27, 2018
1 parent 964ca02 commit 77766c6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 10 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|
| ------- | -------- | ------ |
|2.0.0|27.06.2018| &mdash; Fixes [#6](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/6) [#62](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/62) <br>&mdash; Include Path Fixes <br>&mdash; Grid Autoprefix <br>&mdash; Autoprefix is now on by default|
|1.3.0|19.02.2018| &mdash; ***[NEW [#41](https://github.com/ritwickdey/vscode-live-sass-compiler/pull/41)]*** <br> - added ability to suppress the output window<br> - Statusbar button Color change based on `Success` and `error`.<br><br>_[Thanks a lot to [Brandon Baker](https://github.com/bmwigglestein) for sumitting the PR ]_|
|1.2.0|21.12.17| &mdash; ***[New Features [#26](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/26)]*** `savePath` setting updated. You can now specify `savePath` location relative to your Sass files. *See Settings section for more details* *[Thanks [Marius](https://github.com/morsanu)]* <br><br>&mdash; ***[Bug Fixed [#25](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/25)]*** No more extra new line in generated CSS. *[Thanks [Shahril Amri](https://github.com/redemption024)]* <br><br>&mdash;**[Bug Fixed [#33](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/33)]** Now firefox is recognizing source scss file. *[Thanks [Felix](https://github.com/felix007)]*|
|1.1.0| 01.11.17 | &mdash; ***[NEW [#19](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/19)]*** Support for autoprefix in generated CSS. (see settings section for more) _[Thanks a lot to [boyum](https://github.com/boyum) for sumitting the PR [#22](https://github.com/ritwickdey/vscode-live-sass-compiler/pull/22)]_ <br><br>&mdash; ***[Bug fixed [#20](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/20)]*** : Fixed `liveSassCompile.settings.includeItems` settings. *[Thanks [Hoàng Nam](https://github.com/hoangnamitc)]* |
Expand Down
11 changes: 5 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,12 +136,11 @@ This extension has dependency on _[Live Server](https://marketplace.visualstudio
## What's new ?

* #### Version 1.3.0 (09.02.2018)
* ***[NEW [#41](https://github.com/ritwickdey/vscode-live-sass-compiler/pull/41)]***
- added ability to suppress the output window
- Statusbar button Color change based on `Success` and `error`.

_[Thanks a lot to [Brandon Baker](https://github.com/bmwigglestein) for sumitting the PR ]_
* #### Version 2.0.0 (27.06.2018)
* Fixes [#6](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/6) [#62](https://github.com/ritwickdey/vscode-live-sass-compiler/issues/62)
* Include Path Fixes
* Grid Autoprefix
* Autoprefix is now on by default



Expand Down
11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "live-sass",
"displayName": "Live Sass Compiler",
"description": "Compile Sass or Scss to CSS at realtime with live browser reload.",
"version": "1.3.0",
"version": "2.0.0",
"publisher": "ritwickdey",
"author": {
"name": "Ritwick Dey",
Expand Down Expand Up @@ -139,7 +139,10 @@
"array",
"null"
],
"default": null,
"default": [
"> 1%",
"last 2 versions"
],
"description": "Automatically add vendor prefixes to unsupported CSS properties (e. g. transform -> -ms-transform). Specify what browsers to target with an array of strings (uses [Browserslist](https://github.com/ai/browserslist)). Pass `null` to turn off. \nDefault is `null`"
},
"liveSassCompile.settings.showOutputWindow": {
Expand Down Expand Up @@ -184,7 +187,7 @@
"@types/mocha": "^2.2.32"
},
"announcement": {
"onVersion": "1.3.0",
"message": "Nice Update on Statusbar - Credit to @bmwigglestein"
"onVersion": "2.0.0",
"message": "SassCompiler: CSS Prefix is now by Default. Grid Prefix added & Core Library is upgraded"
}
}

0 comments on commit 77766c6

Please sign in to comment.