Skip to content

Commit

Permalink
v8.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jgerigmeyer committed Oct 2, 2024
1 parent 630ae08 commit fffef3e
Show file tree
Hide file tree
Showing 5 changed files with 703 additions and 712 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# True Changelog

## Unreleased
## 8.1.0 (10/02/24)

- FEATURE: If True `sass` option is not specified, True will automatically
attempt to use `embedded-sass`, then `sass`.
Expand Down
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sass-true",
"title": "True",
"version": "8.0.0",
"version": "8.1.0",
"description": "Unit testing for Sass.",
"keywords": [
"unit-test",
Expand Down Expand Up @@ -79,9 +79,9 @@
}
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/core": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/preset-typescript": "^7.25.7",
"@types/lodash": "^4.17.9",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
Expand Down
2 changes: 1 addition & 1 deletion test/main.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ describe('#runSass', () => {
{
...trueOpts,
sourceType: 'string',
sass: 'sass-embedded',
sass: 'sass',
},
sass,
);
Expand Down
2 changes: 1 addition & 1 deletion test/sass.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ if (process.env.USE_BUILT) {
} else {
runSass = require('../src').runSass;
}
runSass({ describe, it, sass: 'sass-embedded' }, sassFile);
runSass({ describe, it }, sassFile);
Loading

0 comments on commit fffef3e

Please sign in to comment.