Skip to content

Instantly share code, notes, and snippets.

@deiga
Created January 8, 2016 13:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deiga/1909bffee4b79e98cb43 to your computer and use it in GitHub Desktop.
Save deiga/1909bffee4b79e98cb43 to your computer and use it in GitHub Desktop.
aliases.yml
compile-dev:
- 'copy'
- 'hogan'
- 'compass:all'
- 'concat'
- 'requirejs'
ci:
- 'clean'
- 'environment:ci'
- 'jshint:all'
- 'compile-dev'
compile-prod:
- 'copy'
- 'hogan'
- 'compass:release'
- 'concat'
- 'requirejs'
- 'uglify'
- 'cachebust'
local:
- 'clean'
- 'environment:local'
- 'newer:jshint:dev'
- 'compile-dev'
default:
- 'clean'
- 'environment:test'
- 'newer:jshint:dev'
- 'compile-dev'
release:
- 'clean'
- 'environment:test'
- 'newer:jshint:all'
- 'compile-prod'
production:
- 'clean'
- 'environment:production'
- 'newer:jshint:all'
- 'compile-prod'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment