From bbff7403fbf46f9ad92240ac213df8d30ef31b64 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Thu, 20 Sep 2018 02:56:13 +0200 Subject: update packages --- node_modules/clean-css/lib/writer/simple.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'node_modules/clean-css/lib/writer/simple.js') diff --git a/node_modules/clean-css/lib/writer/simple.js b/node_modules/clean-css/lib/writer/simple.js index 21e7f88a7..20fde2a29 100644 --- a/node_modules/clean-css/lib/writer/simple.js +++ b/node_modules/clean-css/lib/writer/simple.js @@ -1,7 +1,5 @@ var all = require('./helpers').all; -var lineBreak = require('os').EOL; - function store(serializeContext, token) { var value = typeof token == 'string' ? token : @@ -15,8 +13,8 @@ function store(serializeContext, token) { function wrap(serializeContext, value) { if (serializeContext.column + value.length > serializeContext.format.wrapAt) { - track(serializeContext, lineBreak); - serializeContext.output.push(lineBreak); + track(serializeContext, serializeContext.format.breakWith); + serializeContext.output.push(serializeContext.format.breakWith); } } -- cgit v1.2.3