Skip to content

use standard path.normalize instead of own implementation #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 2 additions & 18 deletions tasks/concat_css.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,34 +49,18 @@ module.exports = function(grunt) {
function dataTransformUrlFunc(basedir) {
var bd = basedir;
return function(_, b) {
return "url('"+normalize([bd, b].join('/'))+"')";
return "url('"+path.normalize([bd, b].join('/'))+"')";
};
}

// Rebase @import 'someUrl' exception
function dataTransformImportAlternateFunc(basedir) {
var bd = basedir;
return function(_, b) {
return "@import url('"+normalize([bd, b].join('/'))+"')";
return "@import url('"+path.normalize([bd, b].join('/'))+"')";
};
}

/**
* remove upFolder(..) part of an URL
*/
function normalize(url) {
var computedParts = [];
var parts = url.split('/');
for (var i in parts){
if (parts[i] === '..') {
computedParts.pop();
} else {
computedParts.push(parts[i]);
}
}
return computedParts.join('/');
}

function computeBaseUrl() {
var re = new RegExp('(?:^'+ options.baseDir +'\/?)?(.*)\/[^\/]+$');
var re_no_base_dir = /(.*)\/[^\/]+$/;
Expand Down