Skip to content

Commit fffef3e

Browse files
committed
v8.1.0
1 parent 630ae08 commit fffef3e

File tree

5 files changed

+703
-712
lines changed

5 files changed

+703
-712
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# True Changelog
22

3-
## Unreleased
3+
## 8.1.0 (10/02/24)
44

55
- FEATURE: If True `sass` option is not specified, True will automatically
66
attempt to use `embedded-sass`, then `sass`.

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "sass-true",
33
"title": "True",
4-
"version": "8.0.0",
4+
"version": "8.1.0",
55
"description": "Unit testing for Sass.",
66
"keywords": [
77
"unit-test",
@@ -79,9 +79,9 @@
7979
}
8080
},
8181
"devDependencies": {
82-
"@babel/core": "^7.25.2",
83-
"@babel/preset-env": "^7.25.4",
84-
"@babel/preset-typescript": "^7.24.7",
82+
"@babel/core": "^7.25.7",
83+
"@babel/preset-env": "^7.25.7",
84+
"@babel/preset-typescript": "^7.25.7",
8585
"@types/lodash": "^4.17.9",
8686
"@typescript-eslint/eslint-plugin": "^8.8.0",
8787
"@typescript-eslint/parser": "^8.8.0",

test/main.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ describe('#runSass', () => {
154154
{
155155
...trueOpts,
156156
sourceType: 'string',
157-
sass: 'sass-embedded',
157+
sass: 'sass',
158158
},
159159
sass,
160160
);

test/sass.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ if (process.env.USE_BUILT) {
1111
} else {
1212
runSass = require('../src').runSass;
1313
}
14-
runSass({ describe, it, sass: 'sass-embedded' }, sassFile);
14+
runSass({ describe, it }, sassFile);

0 commit comments

Comments
 (0)