Last active
May 25, 2017 16:55
-
-
Save matt-bailey/a6ed97fb6d40e94d28e819cb9665947d to your computer and use it in GitHub Desktop.
Example aliases file for load-grunt-config in our Magento 2 setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* global module */ | |
/* File location: dev/tools/grunt/configs/aliases.js */ | |
/* Usage: https://github.com/firstandthird/load-grunt-config#aliases */ | |
'use strict'; | |
module.exports = { | |
default: [], | |
patternlib: { | |
description: 'Pattern library', | |
tasks: [ | |
'clean:themePatternlib', | |
'bake:themePatternlib' | |
] | |
}, | |
icons: { | |
description: 'Icons', | |
tasks: [ | |
'clean:themeIconsBefore', | |
'svgmin:themeIcons', | |
'grunticon:themeIcons', | |
'clean:themeIconsAfter' | |
] | |
}, | |
assets: { | |
description: 'Theme Assets', | |
tasks: [ | |
'icons', | |
'modernizr:themeModernizr' | |
] | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment