Reputation: 199
I'm using the latest extjs 6 cmd and when I run >sencha app watch in my theme, only var/src/ all.scss is being watched. I'm importing some other sass files but changes are not picked up until I manually refresh the page.
Do I need to include every .scss in my package.json?
Upvotes: 0
Views: 705
Reputation: 199
I finally figured it out. I was missing the toolkit name. Wrong path sigh.
I needed to add the folder src or var. Works like a charm.
"src": [
"${package.dir}/${toolkit.name}/sass/src",
]
Upvotes: 1