Skip to content

Commit 2ff2a34

Browse files
author
Jannik Zschiesche
committed
Bump kaba-scss + fix return type
1 parent 55288bc commit 2ff2a34

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"test": "npm run-script build && ava"
2020
},
2121
"optionalDependencies": {
22-
"kaba-scss": "^3.1.0",
22+
"kaba-scss": "^3.3.2",
2323
"webpack-bundle-analyzer": "^3.6.0"
2424
},
2525
"dependencies": {
@@ -50,7 +50,7 @@
5050
"devDependencies": {
5151
"@types/terser-webpack-plugin": "^2.2.0",
5252
"ava": "^2.4.0",
53-
"kaba-scss": "^3.1.0",
53+
"kaba-scss": "^3.3.2",
5454
"webpack-bundle-analyzer": "^3.6.0"
5555
},
5656
"engines": {

src/runner/SassRunner.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ export class SassRunner
2424
*
2525
* @return {Promise<boolean>} whether the build was successful and error-free
2626
*/
27-
public async run () : Promise<boolean|null>
27+
public async run () : Promise<boolean|void>
2828
{
2929
const entries = Object.keys(this.buildConfig.entries);
3030

0 commit comments

Comments
 (0)