Skip to content

Commit

Permalink
v3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thgh committed Jun 29, 2021
1 parent 9e6d8e7 commit 737d89e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,19 @@ All notable changes to `rollup-plugin-scss` will be documented in this file.

## [Unreleased]

## [3.0.0] - 2021-06-29

### Added

- Add insert option @syJSdev
- Add `sourceMap` option to enable generation of source map @astappiev
- Add Yarn PnP support` @eagerestwolf
- Refactor to Typescript
- Automated testing using Github Actions

### Updated

- Prefer sass over node-sass
- A `processor` can receive map as second parameter and return `{ css: string, map?: string }`
- Remove `node-sass` from optionalDependencies @astappiev <br/>
**You have to specify `node-sass` or `sass` in your project dependencies alongside `rollup-plugin-scss`**
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "rollup-plugin-scss",
"version": "3.0.0-rc1",
"version": "3.0.0",
"description": "Rollup multiple .scss, .sass and .css imports",
"main": "index.cjs.js",
"module": "index.es.js",
Expand Down Expand Up @@ -38,6 +38,7 @@
},
"files": [
"index.cjs.js",
"index.d.ts",
"index.es.js"
],
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion test/sass/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ export default {
format: 'esm'
},
plugins: [scss()]
}
}

0 comments on commit 737d89e

Please sign in to comment.