2012-01-27 01:05:45 -05:00
|
|
|
BOOTSTRAP = ./docs/assets/css/bootstrap.css
|
2012-01-27 00:48:46 -05:00
|
|
|
BOOTSTRAP_LESS = ./less/bootstrap.less
|
2012-01-27 01:05:45 -05:00
|
|
|
BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
|
2012-01-27 00:48:46 -05:00
|
|
|
BOOTSTRAP_RESPONSIVE_LESS = ./less/responsive.less
|
2012-04-19 01:49:31 -04:00
|
|
|
DATE=$(shell date +%I:%M%p)
|
|
|
|
CHECK=\033[32m✔\033[39m
|
2012-04-23 07:16:27 -04:00
|
|
|
HR=\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#\#
|
2011-06-28 03:23:54 -04:00
|
|
|
|
|
|
|
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2012-01-29 16:15:37 -05:00
|
|
|
# BUILD DOCS
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
|
|
|
|
2012-04-19 01:49:31 -04:00
|
|
|
build:
|
2012-04-23 07:16:27 -04:00
|
|
|
@echo "\n${HR}"
|
2012-04-19 01:49:31 -04:00
|
|
|
@echo "Building Bootstrap..."
|
2012-04-23 07:16:27 -04:00
|
|
|
@echo "${HR}\n"
|
2012-04-19 01:49:31 -04:00
|
|
|
@jshint js/*.js --config js/.jshintrc
|
|
|
|
@jshint js/tests/unit/*.js --config js/.jshintrc
|
|
|
|
@echo "Running JSHint on javascript... ${CHECK} Done"
|
|
|
|
@recess --compile ${BOOTSTRAP_LESS} > ${BOOTSTRAP}
|
|
|
|
@recess --compile ${BOOTSTRAP_RESPONSIVE_LESS} > ${BOOTSTRAP_RESPONSIVE}
|
|
|
|
@echo "Compiling LESS with Recess... ${CHECK} Done"
|
|
|
|
@node docs/build
|
|
|
|
@cp img/* docs/assets/img/
|
|
|
|
@cp js/*.js docs/assets/js/
|
|
|
|
@cp js/tests/vendor/jquery.js docs/assets/js/
|
|
|
|
@echo "Compiling documentation... ${CHECK} Done"
|
2012-08-15 04:56:52 -04:00
|
|
|
@cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > docs/assets/js/bootstrap.js
|
2012-04-19 01:49:31 -04:00
|
|
|
@uglifyjs -nc docs/assets/js/bootstrap.js > docs/assets/js/bootstrap.min.tmp.js
|
2012-10-31 00:34:39 -04:00
|
|
|
@echo "/**\n* Bootstrap.js v2.2.1 by @fat & @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > docs/assets/js/copyright.js
|
2012-04-19 01:49:31 -04:00
|
|
|
@cat docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js > docs/assets/js/bootstrap.min.js
|
|
|
|
@rm docs/assets/js/copyright.js docs/assets/js/bootstrap.min.tmp.js
|
|
|
|
@echo "Compiling and minifying javascript... ${CHECK} Done"
|
2012-04-23 07:16:27 -04:00
|
|
|
@echo "\n${HR}"
|
2012-04-19 01:49:31 -04:00
|
|
|
@echo "Bootstrap successfully built at ${DATE}."
|
2012-04-23 07:16:27 -04:00
|
|
|
@echo "${HR}\n"
|
2012-04-19 01:49:31 -04:00
|
|
|
@echo "Thanks for using Bootstrap,"
|
|
|
|
@echo "<3 @mdo and @fat\n"
|
|
|
|
|
2012-04-19 19:38:43 -04:00
|
|
|
#
|
2012-04-19 20:34:07 -04:00
|
|
|
# RUN JSHINT & QUNIT TESTS IN PHANTOMJS
|
2012-04-19 19:38:43 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
test:
|
|
|
|
jshint js/*.js --config js/.jshintrc
|
|
|
|
jshint js/tests/unit/*.js --config js/.jshintrc
|
2012-04-19 20:34:07 -04:00
|
|
|
node js/tests/server.js &
|
|
|
|
phantomjs js/tests/phantom.js "http://localhost:3000/js/tests"
|
|
|
|
kill -9 `cat js/tests/pid.txt`
|
|
|
|
rm js/tests/pid.txt
|
2011-06-28 03:23:54 -04:00
|
|
|
|
2012-08-29 07:24:00 -04:00
|
|
|
#
|
|
|
|
# CLEANS THE ROOT DIRECTORY OF PRIOR BUILDS
|
|
|
|
#
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -r bootstrap
|
|
|
|
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2012-01-29 19:33:29 -05:00
|
|
|
# BUILD SIMPLE BOOTSTRAP DIRECTORY
|
2012-04-18 19:16:42 -04:00
|
|
|
# recess & uglifyjs are required
|
2012-01-29 16:15:37 -05:00
|
|
|
#
|
|
|
|
|
2012-01-29 19:33:29 -05:00
|
|
|
bootstrap:
|
|
|
|
mkdir -p bootstrap/img
|
|
|
|
mkdir -p bootstrap/css
|
|
|
|
mkdir -p bootstrap/js
|
|
|
|
cp img/* bootstrap/img/
|
2012-04-18 19:16:42 -04:00
|
|
|
recess --compile ${BOOTSTRAP_LESS} > bootstrap/css/bootstrap.css
|
|
|
|
recess --compress ${BOOTSTRAP_LESS} > bootstrap/css/bootstrap.min.css
|
|
|
|
recess --compile ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.css
|
|
|
|
recess --compress ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.min.css
|
2012-08-21 02:13:43 -04:00
|
|
|
cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js js/bootstrap-affix.js > bootstrap/js/bootstrap.js
|
2012-03-08 14:39:00 -05:00
|
|
|
uglifyjs -nc bootstrap/js/bootstrap.js > bootstrap/js/bootstrap.min.tmp.js
|
2012-04-15 02:51:08 -04:00
|
|
|
echo "/*!\n* Bootstrap.js by @fat & @mdo\n* Copyright 2012 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > bootstrap/js/copyright.js
|
2012-03-08 14:39:00 -05:00
|
|
|
cat bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js > bootstrap/js/bootstrap.min.js
|
|
|
|
rm bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js
|
2012-01-29 16:15:37 -05:00
|
|
|
|
|
|
|
#
|
2012-02-01 19:38:58 -05:00
|
|
|
# MAKE FOR GH-PAGES 4 FAT & MDO ONLY (O_O )
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2011-11-21 00:36:26 -05:00
|
|
|
|
2012-04-15 03:16:09 -04:00
|
|
|
gh-pages: bootstrap docs
|
2012-04-15 03:19:25 -04:00
|
|
|
rm -f docs/assets/bootstrap.zip
|
2012-04-15 03:16:09 -04:00
|
|
|
zip -r docs/assets/bootstrap.zip bootstrap
|
|
|
|
rm -r bootstrap
|
2012-02-02 01:27:46 -05:00
|
|
|
rm -f ../bootstrap-gh-pages/assets/bootstrap.zip
|
2012-02-01 19:38:58 -05:00
|
|
|
node docs/build production
|
2012-01-31 17:05:30 -05:00
|
|
|
cp -r docs/* ../bootstrap-gh-pages
|
|
|
|
|
2012-02-01 19:38:58 -05:00
|
|
|
#
|
|
|
|
# WATCH LESS FILES
|
|
|
|
#
|
|
|
|
|
2011-07-02 02:21:11 -04:00
|
|
|
watch:
|
2012-01-29 16:15:37 -05:00
|
|
|
echo "Watching less files..."; \
|
|
|
|
watchr -e "watch('less/.*\.less') { system 'make' }"
|
|
|
|
|
|
|
|
|
2012-04-24 05:21:45 -04:00
|
|
|
.PHONY: docs watch gh-pages
|