diff --git a/Gemfile b/Gemfile index d26ea706e..303eaa1cc 100644 --- a/Gemfile +++ b/Gemfile @@ -3,7 +3,7 @@ source 'https://rubygems.org' gem 'jekyll', '~> 1.0' gem 'safe_yaml', '~> 1.0.4' gem 'sass', '~> 3.0' -gem 'less', '~> 2.5.0' +# gem 'less', '~> 2.5.0' gem 'libv8', '~> 3.16.14.0' gem 'therubyracer' gem 'fontcustom' diff --git a/src/doc/Makefile b/src/doc/Makefile index e1103065e..3f8e3f74c 100644 --- a/src/doc/Makefile +++ b/src/doc/Makefile @@ -1,6 +1,6 @@ --- --- -PATH := ../../node_modules/.bin:$(PATH) +PATH := ../node_modules/.bin:$(PATH) FA_ROOT_DIRECTORY = assets/fork-awesome FA_LESS_DIRECTORY = assets/fork-awesome/less @@ -25,7 +25,7 @@ build: bundle exec lessc ${FA_LESS_MODERN} > ${FA_CSS_MODERN} bundle exec lessc --clean-css="--compatibility=ie8" ${FA_LESS_MODERN} > ${FA_CSS_MODERN_MIN} -# sass ${FA_SCSS_MODERN} ${FA_CSS_MODERN} + # sass ${FA_SCSS_MODERN} ${FA_CSS_MODERN} bundle exec lessc --clean-css="--compatibility=ie8" ${SITE_LESS} > ${SITE_CSS} @@ -36,7 +36,8 @@ build: @echo "Generating zip file" cd assets && mv fork-awesome fork-awesome-{{ site.forkawesome.version }} && zip -r9 fork-awesome-{{ site.forkawesome.version }}.zip fork-awesome-{{ site.forkawesome.version }} && mv fork-awesome-{{ site.forkawesome.version }} fork-awesome - find .. -type f ! -perm 644 -exec chmod 644 {} \; + # TODO: figure out why this was here and remove it if unused. It blocked running local less version + # find .. -type f ! -perm 644 -exec chmod 644 {} \; default: build