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
Take the following file foo.bar.coffee.
foo.bar.coffee
The file is compiled to JavaScript successfully; however, the compiled file is named foo.js instead of foo.bar.js.
foo.js
foo.bar.js
coffee: { scripts: { cwd: './src/', src: '**/*.coffee', dest: './dest/', expand: true, ext: '.js' } }
The text was updated successfully, but these errors were encountered:
Please see this issue: gruntjs/grunt#750 and this SO: http://stackoverflow.com/questions/16697344/configure-grunt-file-name-matching-for-files-with-multiple-dots
Currently you need to use the rename option.
rename
Sorry, something went wrong.
No branches or pull requests
Take the following file
foo.bar.coffee
.The file is compiled to JavaScript successfully; however, the compiled file is named
foo.js
instead offoo.bar.js
.The text was updated successfully, but these errors were encountered: