We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The 6to5 command line tool lets you "compile the entire src directory and output it to the lib directory"
src
lib
$ 6to5 src --out-dir lib
while grunt-6to5 seems to work only if you list each individual file. (Unless I'm missing something obvious?)
The text was updated successfully, but these errors were encountered:
The task can take a files array, like so:
files
files: [{ expand: true, cwd: 'app', src: ['**/*.es6.js'], dest: 'app', ext: '.js' }]
This will:
app
.es6.js
.js
Sorry, something went wrong.
The above is documented in the grunt docs and is common to all grunt tasks.
No branches or pull requests
The 6to5 command line tool lets you "compile the entire
src
directory and output it to thelib
directory"while grunt-6to5 seems to work only if you list each individual file. (Unless I'm missing something obvious?)
The text was updated successfully, but these errors were encountered: