function theSkeletonDirectory()
{
    $directory = getBowerDirectory() . 'skeleton-css/';
    if (!fileExists($directory)) {
        consoleLog("You seem to be missing the 'skeleton-css' folder", 'error');
    }
    print $directory;
}
Пример #2
0
function theBowerDirectory($componentPath)
{
    $directory = getBowerDirectory() . $componentPath;
    // if (!fileExists($directory)) consoleLog("You seem to be missing the '" . subPath . "' folder", 'error');
    return $directory;
}