Meet
02/19/2020, 8:28 PMChecking Workspace/Suite_Commerce_Base_Theme/manifest.json file paths...
'do_validate' errored after 2.25 ms
Error in plugin "gulp validate"
Message:
Sass files section does not include the entry point
'update-validate' errored after 588 ms
'theme:deploy' errored after 590 ms
The following tasks did not complete: templates, sass, sass-prepare, do_templates
Did you forget to signal async completion?
I didn’t modify the base theme, all the files are untouched.
Never got this error before, try to search online couldn’t find any relevant solution so, any help or point to the right direction is appreciated.Harley
02/20/2020, 1:04 AMmanifest.json
file is not correct. You'll find this file in your Workspace > [Theme_Name] > manifest.json
It sounds like it is missing a part of the JSON that tells the compiler where to start looking for all the initial Sass files.
My manifest file has the following within it:
...
"sass": {
"entry_points": {
"shopping": "Modules/Shopping/shopping.scss",
"myaccount": "Modules/MyAccount/myaccount.scss",
"checkout": "Modules/Checkout/checkout.scss"
},
"files": [...]
},
...
Meet
02/20/2020, 1:06 AMgulpfile.js
but this solved my problem. Thank you!!Harley
02/20/2020, 1:08 AMMeet
02/20/2020, 5:39 PM