Cannot build
tsangiotis opened this issue · 2 comments
tsangiotis commented
When I use grunt I get this
➜ aerial-mod git:(master) ✗ grunt
Running "sass:dist" (sass) task
Running "inline:dist" (inline) task
Processing src/index.html...Warning: Unable to write "" file (Error code: undefined). Use --force to continue.
Aborted due to warnings.
When I edit the Gruntfile.js
from:
22 inline: {
23 dist: {
24 options: {
25 uglify: true
26 },
27 src: ['src/index.html'],
28 dest: ['./']
to
22 inline: {
23 dist: {
24 options: {
25 uglify: true
26 },
27 src: 'src/index.html',
28 dest: './'
I get this:
➜ aerial-mod git:(master) ✗ grunt
Running "sass:dist" (sass) task
Running "inline:dist" (inline) task
Processing src/index.html...OK
Running "htmlmin:dist" (htmlmin) task
>> Source file "" not found.
Done, without errors.
and nothing gets produced.
Any ideas?
oradwell commented
When I ran it I was getting:
Running "sass:dist" (sass) task
Running "inline:dist" (inline) task
Processing src/index.html...Warning: Arguments to path.join must be strings Use --force to continue.
Aborted due to warnings.
The following change worked for me (same lines in Gruntfile.js
):
diff --git a/Gruntfile.js b/Gruntfile.js
index 2b73214..af12657 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -24,8 +24,8 @@ module.exports = function(grunt) {
options: {
uglify: true
},
- src: ['src/index.html'],
- dest: ['./']
+ src: 'src/index.html',
+ dest: './index.html'
}
},
// minimise HTML
I don't know how it was working before.
I'll commit this change. Thank you for opening the issue. Please let me know if you're still having the issue.
tsangiotis commented
It works, thanks!
On Feb 18, 2015 12:17 AM, "Omer Karadagli" notifications@github.com wrote:
Closed #1 #1 via 06206f3
06206f3
.—
Reply to this email directly or view it on GitHub
#1 (comment).