This repository has been archived by the owner on May 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 310
Cannot grunt build app without running into errors #632
Comments
Oh, I guess adding the --force flag makes it complete the build process, but it runs into another warning on the way:
|
I think the problem is that the |
I believe the problem was that there were extra '%' characters added to the closing tags in the imagemin task. Was: cwd: '<%%= config.app %%>',
src: '*.{ico,png}',
dest: '<%%= config.dist %%>' Fixed: cwd: '<%%= config.app %>',
src: '*.{ico,png}',
dest: '<%%= config.dist %>' I issued a pull request as per the above, just wanted to post it here for anyone having issues with this. Just delete those extra '%' characters and the build task should work. |
Brilliant, it's working now. |
Released in v1.1.2. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Was testing this to build a simple site and after installing and running the generator (which ran fine without any errors), grunt build would abort, probably due to the following:
The text was updated successfully, but these errors were encountered: