UNPKG

foundation-sites-5

Version:

**This package is only for versions 5 and earlier of Foundation. As of version 6, the package has a new name: `foundation-sites`.**

39 lines 523 B
# Grunt aliases --- # Build everything build: - 'build:assets' - 'assemble' # Build assets 'build:assets': - 'clean' - 'sass' - 'concat' - 'uglify' - 'copy' - 'cssmin' - 'jst' - 'string-replace' # Travis CI travis: - 'build' - 'karma:continuous' # Develop develop: - 'travis' - 'watch_start' # Deploy deploy: - 'build' - 'rsync:dist' # Server server: - 'connect:server:keepalive' # Watch Start watch_start: - 'karma:dev_watch:start' - 'watch' # Default default: - 'build' - 'watch'