mirror of https://github.com/lukechilds/rollup.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
80 lines
1.8 KiB
80 lines
1.8 KiB
export const absolutePath = /^(?:\/|(?:[A-Za-z]:)?[\\|\/])/;
|
|
export const relativePath = /^\.?\.\//;
|
|
|
|
export function isAbsolute ( path ) {
|
|
return absolutePath.test( path );
|
|
}
|
|
|
|
export function isRelative ( path ) {
|
|
return relativePath.test( path );
|
|
}
|
|
|
|
export function normalize ( path ) {
|
|
return path.replace( /\\/g, '/' );
|
|
}
|
|
|
|
export function basename ( path ) {
|
|
return path.split( /(\/|\\)/ ).pop();
|
|
}
|
|
|
|
export function dirname ( path ) {
|
|
const match = /(\/|\\)[^\/\\]*$/.exec( path );
|
|
if ( !match ) return '.';
|
|
|
|
const dir = path.slice( 0, -match[0].length );
|
|
|
|
// If `dir` is the empty string, we're at root.
|
|
return dir ? dir : '/';
|
|
}
|
|
|
|
export function extname ( path ) {
|
|
const match = /\.[^\.]+$/.exec( basename( path ) );
|
|
if ( !match ) return '';
|
|
return match[0];
|
|
}
|
|
|
|
export function relative ( from, to ) {
|
|
const fromParts = from.split( /[\/\\]/ ).filter( Boolean );
|
|
const toParts = to.split( /[\/\\]/ ).filter( Boolean );
|
|
|
|
while ( fromParts[0] && toParts[0] && fromParts[0] === toParts[0] ) {
|
|
fromParts.shift();
|
|
toParts.shift();
|
|
}
|
|
|
|
while ( toParts[0] === '.' || toParts[0] === '..' ) {
|
|
const toPart = toParts.shift();
|
|
if ( toPart === '..' ) {
|
|
fromParts.pop();
|
|
}
|
|
}
|
|
|
|
while ( fromParts.pop() ) {
|
|
toParts.unshift( '..' );
|
|
}
|
|
|
|
return toParts.join( '/' );
|
|
}
|
|
|
|
export function resolve ( ...paths ) {
|
|
let resolvedParts = paths.shift().split( /[\/\\]/ );
|
|
|
|
paths.forEach( path => {
|
|
if ( isAbsolute( path ) ) {
|
|
resolvedParts = path.split( /[\/\\]/ );
|
|
} else {
|
|
const parts = path.split( /[\/\\]/ );
|
|
|
|
while ( parts[0] === '.' || parts[0] === '..' ) {
|
|
const part = parts.shift();
|
|
if ( part === '..' ) {
|
|
resolvedParts.pop();
|
|
}
|
|
}
|
|
|
|
resolvedParts.push.apply( resolvedParts, parts );
|
|
}
|
|
});
|
|
|
|
return resolvedParts.join( '/' ); // TODO windows...
|
|
}
|
|
|