We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb2db6f commit 4dbc931Copy full SHA for 4dbc931
lib/process-content.js
@@ -21,6 +21,7 @@ module.exports = function processContent(
21
// SugarSS support:
22
if (ext === ".sss") {
23
if (!sugarss) {
24
+ /* c8 ignore next 3 */
25
try {
26
sugarss = require("sugarss")
27
} catch {} // Ignore
package.json
@@ -27,6 +27,7 @@
},
28
"devDependencies": {
29
"ava": "^5.0.0",
30
+ "c8": "^8.0.0",
31
"eslint": "^8.2.0",
32
"eslint-config-problems": "^7.0.0",
33
"eslint-plugin-prettier": "^4.0.0",
@@ -42,7 +43,7 @@
42
43
"ci": "eslint . && ava",
44
"lint": "eslint . --fix",
45
"pretest": "npm run lint",
- "test": "ava"
46
+ "test": "c8 ava"
47
48
"eslintConfig": {
49
"extends": "eslint-config-problems",
0 commit comments