Closed guilhermemarconi closed 9 years ago
Can you post your gruntfile so we can have a look?
Of course!
"use strict";
module.exports = function(grunt) {
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks);
grunt.initConfig({
watch: {
options: {
livereload: true
},
html: {
files: "**/*.php"
},
sass: {
files: "dev/scss/**/*.scss",
tasks: ["sass", "cmq", "postcss"]
},
js: {
files: ["dev/js/**/*.js", "Gruntfile.js"],
tasks: ["uglify"]
},
images: {
files: "dev/img/**/*.{png,jpg,gif}",
tasks: ["imagemin"]
},
svg: {
files: "dev/svg/**/*.svg",
tasks: ["svgmin"]
}
},
sass: {
options: {
sourceMap: true
},
dist: {
files: {
'style.css': 'dev/scss/style.scss'
}
}
},
postcss: {
options: {
processors: [
require('autoprefixer-core')({
browsers: 'last 1 version'
})
]
},
dist: {
src: 'style.css'
}
},
cmq: {
options: {
log: true
},
dist: {
files: {
'style.css': 'style.css'
}
}
},
cssmin: {
options: {
keepSpecialComments: 1,
noAdvanced: true
},
css: {
files: {
"style.css": "style.css"
}
}
},
uglify: {
options: {
mangle: true
},
production: {
files: {
"js/scripts.js": [
"dev/js/scripts.js"
]
}
}
},
imagemin: {
dynamic: {
options: {
optimizationLevel: 7,
progressive: true
},
files: [{
expand: true,
cwd: 'dev/img/',
src: ['**/*.{png,jpg,gif}'],
dest: 'img/'
}]
}
},
svgmin: {
options: {
plugins: [{
removeViewBox: false
}, {
removeUselessStrokeAndFill: false
}, {
removeEmptyAttrs: false
}]
},
dist: {
expand: true,
cwd: 'dev/svg/',
src: ['*.svg'],
dest: 'includes/svg'
}
},
browserSync: {
files: {
src: [
'style.css',
'js/*.js',
'**/*.php',
]
},
options: {
watchTask: true,
proxy: "dev/mysite",
ghostMode: {
clicks: true,
scroll: true,
links: true,
forms: true
}
}
},
ftpush: {
build: {
auth: {
host: "ftp.mywebsito.com",
port: 21,
authKey: "key1"
},
src: ".",
dest: "/www/wp-content/themes/mytheme/",
exclusions: [
".DS_Store",
"Thumbs.db",
"Gruntfile.js",
"package.json",
"node_modules",
".ftppass",
".gitignore",
".git",
".sass-cache",
"dev"
]
}
},
devUpdate: {
main: {
options: {
updateType: 'force',
reportUpdated: false,
semver: false,
packages: {
devDependencies: true,
dependencies: false
},
packageJson: null,
reportOnlyPkgs: []
}
}
}
});
grunt.registerTask("default", ["browserSync", "watch"]);
grunt.registerTask("css", ["sass", "cmq", "postcss"]);
grunt.registerTask("img", ["imagemin"]);
grunt.registerTask("js", ["uglify"]);
grunt.registerTask("svg", ["svgmin"]);
grunt.registerTask("update", ["devUpdate"]);
grunt.registerTask("deploy", ["sass", "cmq", "postcss", "cssmin", "imagemin", "uglify", "svgmin", "ftpush"]);
};
Could you try this? Don't think it will fix it but it's a start.
"use strict";
module.exports = function(grunt) {
require("matchdep").filterDev("grunt-*").forEach(grunt.loadNpmTasks);
grunt.initConfig({
watch: {
options: {
livereload: true
},
html: {
files: "**/*.php"
},
sass: {
files: "dev/scss/**/*.scss",
tasks: ["sass", "cmq", "postcss"]
},
js: {
files: ["dev/js/**/*.js", "Gruntfile.js"],
tasks: ["uglify"]
},
images: {
files: "dev/img/**/*.{png,jpg,gif}",
tasks: ["imagemin"]
},
svg: {
files: "dev/svg/**/*.svg",
tasks: ["svgmin"]
}
},
sass: {
options: {
sourceMap: true
},
dist: {
files: {
'style.css': 'dev/scss/style.scss'
}
}
},
postcss: {
options: {
processors: [
require('autoprefixer-core')({
browsers: 'last 1 version'
})
]
},
dist: {
src: 'style.css'
}
},
cmq: {
options: {
log: true
},
dist: {
files: {
'style.css': 'style.css'
}
}
},
cssmin: {
options: {
keepSpecialComments: 1,
noAdvanced: true
},
css: {
files: {
"style.css": "style.css"
}
}
},
uglify: {
options: {
mangle: true
},
production: {
files: {
"js/scripts.js": [
"dev/js/scripts.js"
]
}
}
},
imagemin: {
dynamic: {
options: {
optimizationLevel: 7,
progressive: true
},
files: [{
expand: true,
cwd: 'dev/img/',
src: ['**/*.{png,jpg,gif}'],
dest: 'img/'
}]
}
},
svgmin: {
options: {
plugins: [{
removeViewBox: false
}, {
removeUselessStrokeAndFill: false
}, {
removeEmptyAttrs: false
}]
},
dist: {
expand: true,
cwd: 'dev/svg/',
src: ['*.svg'],
dest: 'includes/svg'
}
},
browserSync: {
files: {
src: [
'style.css',
'js/*.js',
'**/*.php'
]
},
options: {
watchTask: true,
proxy: "dev/mysite",
ghostMode: {
clicks: true,
scroll: true,
links: true,
forms: true
}
}
},
ftpush: {
build: {
auth: {
host: "ftp.mywebsito.com",
port: 21,
authKey: "key1"
},
src: ".",
dest: "/www/wp-content/themes/mytheme/",
exclusions: [
".DS_Store",
"Thumbs.db",
"Gruntfile.js",
"package.json",
"node_modules",
".ftppass",
".gitignore",
".git",
".sass-cache",
"dev"
]
}
},
devUpdate: {
main: {
options: {
updateType: 'force',
reportUpdated: false,
semver: false,
packages: {
devDependencies: true,
dependencies: false
},
packageJson: null,
reportOnlyPkgs: []
}
}
}
});
grunt.registerTask("default", ["browserSync", "watch"]);
grunt.registerTask("css", ["sass", "cmq", "postcss"]);
grunt.registerTask("img", ["imagemin"]);
grunt.registerTask("js", ["uglify"]);
grunt.registerTask("svg", ["svgmin"]);
grunt.registerTask("update", ["devUpdate"]);
grunt.registerTask("deploy", ["sass", "cmq", "postcss", "cssmin", "imagemin", "uglify", "svgmin", "ftpush"]);
};
Yes! I think it was realy the comma at **/*.php
. Shame on me! :disappointed_relieved:
Thanks @kokarn
I'm having this message in Grunt Runner Console:
But it was working yesterday! :disappointed: