Created
December 13, 2015 20:00
-
-
Save cmstead/f0103a4cec181a1c96ea to your computer and use it in GitHub Desktop.
Grunt file object a handy reference for performing file globbing in Grunt
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
| { | |
| "src": "path/to/source", | |
| "defaultEncoding": "utf8", | |
| "preserveBOM": false, | |
| "dest": "path/to/destionation/", | |
| "ext": ".extensions.must.contain.dots", | |
| "cwd": "start/in/this/directory/", | |
| "expand": { | |
| "cwd": true, | |
| "match": ["file globbing patterns"], | |
| "nonull": true, | |
| "matchBase": "./**/*.foo.*.js" | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment