refactor: remove unused `css-import` node (#4375)

master
Evilebot Tnawi 2018-04-25 21:29:59 +03:00 committed by GitHub
parent e5741552ed
commit 2a3c616787
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 19 deletions

View File

@ -196,25 +196,6 @@ function genericPrint(path, options, print) {
: ";"
]);
}
case "css-import": {
return concat([
"@",
maybeToLowerCase(node.name),
" ",
node.directives ? concat([node.directives, " "]) : "",
adjustStrings(node.importPath, options),
node.nodes.length > 0
? concat([
" {",
indent(
concat([softline, printNodeSequence(path, options, print)])
),
softline,
"}"
])
: ";"
]);
}
// postcss-media-query-parser
case "media-query-list": {
const parts = [];