- Code: Select all
"build_systems":
[
{
"name": "grunt tasks",
"working_dir": "${project_path:${folder}}",
"cmd": [
"grunt.cmd", "--config", "${project_path}\\web\\html\\js\\grunt.js", "--no-color", "concat", "min", "sass"
],
"shell" : true,
"variants": [
{
"name": "deploy web bundle",
"shell" : true,
"cmd": [
"php.exe", "${project_path}\\app\\console", "assets:install", "web"
]
}
]
}
]
Thanks!