Skip to content

Commit

Permalink
v6.0.0
Browse files Browse the repository at this point in the history
# 6.0.0 - 2023-02-07

<small>[Compare to previous release][comp:6.0.0]</small>

### Breaking changes

-   The following deprecated settings have been removed:
    -   `liveSassCompile.settings.formats[].savePathSegmentKeys`
    -   `liveSassCompile.settings.formats[].savePathReplaceSegmentsWith`
    -   _**Note:** other deprecated settings will remain in place to maintain backwards compatibility, or until SASS2.0_
-   Requires VS Code v1.74 or later

### Added

-   New `liveSassCompile.settings.useNewCompiler` setting. Use it to try the SASS 2.0 compiler - before it becomes mandatory

### Fixed

-   `debugFileList` command now correctly includes the files that fall under the excluded and partial patterns
-   All node module paths are now resolved correctly (when utilising the `~/[node module name]/file_path` feature)
-   Any output (`Information` or higher) is saved in the output window. **It still only pops up depending on your setting.**  
_This is to match the original extension._

### Updated

-   `autoprefixer` to `10.4.13` [Changelog][cl:ap]
-   `fdir` to `5.3.0` [Changelog][cl:fd]
-   `postcss` to `8.4.21` [Changelog][cl:pc]
-   `sass` to `1.58.0` [Changelog][cl:sa]
-   Various dev dependency updates _(nothing user facing)_

[comp:6.0.0]: v5.5.1...v6.0.0
[cl:ap]: https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md
[cl:fd]: https://github.com/thecodrr/fdir/releases
[cl:pc]: https://github.com/postcss/postcss/blob/main/CHANGELOG.md
[cl:sa]: https://github.com/sass/dart-sass/blob/main/CHANGELOG.md
  • Loading branch information
glenn2223 authored Feb 7, 2023
2 parents 84738b5 + 555f946 commit 4f5d252
Show file tree
Hide file tree
Showing 18 changed files with 2,579 additions and 2,882 deletions.
11 changes: 10 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,14 @@
},
"search.exclude": {
"out": true // set this to false to include "out" folder in search results
},
"editor.formatOnPaste": true,
"editor.formatOnSave": true,
"files.associations": {
"CHANGELOG.md": "NoFormat"
},
"[NoFormat]": {
"editor.formatOnPaste": false,
"editor.formatOnSave": false
}
}
}
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"label": "pack",
"type": "npm",
"script": "webpack",
"script": "rollup",
// show the output window only if unrecognized errors occur.
"presentation": {
"echo": true,
Expand Down
810 changes: 454 additions & 356 deletions CHANGELOG.md

Large diffs are not rendered by default.

Loading

0 comments on commit 4f5d252

Please sign in to comment.