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 problem is the optimizer looks for .js file when one exists. The main file looks as follows:
.js
require(['cs!coffee/models/Account'], function (Account) { // ... });
Then, when I run Grunt task, following is printed:
>> Error: ENOENT: no such file or directory, open >> '/home/dc/kiapp/assets/js/coffee/models/Account.js'
As you see, cs looks for .js file. Note that when I type a file that doesn't exist:
require(['cs!coffee/models/AccountABCDEF'], function (Account) { // ... });
Optimizer does look for .coffee file!
.coffee
>> Error: ENOENT: no such file or directory, open >> '/home/dc/kiapp/assets/js/coffee/models/AccountABCDEF.coffee'
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem is the optimizer looks for
.js
file when one exists.The main file looks as follows:
Then, when I run Grunt task, following is printed:
As you see, cs looks for
.js
file. Note that when I type a file that doesn't exist:Optimizer does look for
.coffee
file!The text was updated successfully, but these errors were encountered: