Skip to content

Commit a863874

Browse files
committed
Closes #12 - updated SASS
1 parent 7fb8a0b commit a863874

File tree

4 files changed

+799
-2024
lines changed

4 files changed

+799
-2024
lines changed

CHANGELOG.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,27 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.5.0] - 2021-12-22
11+
12+
### ⚠ Breaking Changes ⚠
13+
14+
`node-sass` was been deprecated by the authors and is no longer a dependency for this project. The `sass` package has taken it's place as a [peer dependency](https://nodejs.org/en/blog/npm/peer-dependencies/#the-solution-peer-dependencies).
15+
16+
### Updated
17+
18+
- NPM packages
19+
1020
## [0.4.0] - 2021-06-05
1121

1222
### Updated
1323

14-
- [node-sass](https://github.com/sass/node-sass/releases/tag/v6.0.0) to v6.0.0
15-
- [minify](https://github.com/coderaiser/minify/releases/tag/v7.0.2) to v7.0.2
16-
- [purgecss](https://github.com/FullHuman/purgecss/releases/tag/v4.0.0) to v4.0.3
24+
- [node-sass](https://github.com/sass/node-sass/releases/tag/v6.0.0) to v6.0.0
25+
- [minify](https://github.com/coderaiser/minify/releases/tag/v7.0.2) to v7.0.2
26+
- [purgecss](https://github.com/FullHuman/purgecss/releases/tag/v4.0.0) to v4.0.3
1727

1828
### Fixed
1929

20-
- `purge` config value now defaults to `false`
30+
- `purge` config value now defaults to `false`
2131

2232
## [0.3.1] - 2020-09-10
2333

@@ -68,7 +78,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6878
- Developers can disable `purgeCSS`
6979
- CLI consumes user provided config file
7080

71-
[unreleased]: https://github.com/codewithkyle/cssmonster/compare/v0.4.0...HEAD
81+
[unreleased]: https://github.com/codewithkyle/cssmonster/compare/v0.5.0...HEAD
82+
[0.5.0]: https://github.com/codewithkyle/cssmonster/compare/v0.4.0...v0.5.0
7283
[0.4.0]: https://github.com/codewithkyle/cssmonster/compare/v0.3.1...v0.4.0
7384
[0.3.0]: https://github.com/codewithkyle/cssmonster/compare/v0.2.1...v0.3.0
7485
[0.2.1]: https://github.com/codewithkyle/cssmonster/compare/v0.2.0...v0.2.1

cssmonster.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ const fs = require("fs");
44
const path = require("path");
55
const glob = require("glob");
66
const semver = require("semver");
7-
const sass = require("node-sass");
7+
const sass = require("sass");
88
const yargs = require("yargs").argv;
99
const minify = require("minify");
1010
const ora = require("ora");

0 commit comments

Comments
 (0)