Skip to content

Commit 75502dd

Browse files
author
Andrew Levine
committed
Fix lint error
1 parent 32eefd9 commit 75502dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/loader.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ module.exports = function(content, map) {
9292
exportJs = "exports.locals = new Proxy(" + exportJs + "," +
9393
"{ get(target, property) { " +
9494
"if (typeof target[property] !== 'string' && property !== '__esModule') {" +
95-
"console.warn(`Attempted to access non-existent className '${property} on CSS module'`)" +
95+
"console.warn('Attempted to access non-existent class name' + property + ' on CSS module')" +
9696
"} else { return target[property] }" +
9797
"}})";
9898
} else {

0 commit comments

Comments
 (0)