I was getting an error when running gulp patternlab:build. It appears the issue is that the strings need a double quote (") as opposed to a single quote (').
In other words, "tabsToAdd": ['scss'] needs to be changed to "tabsToAdd": ["scss"]. Doing this allowed me to perform a build.
I was getting an error when running
gulp patternlab:build
. It appears the issue is that the strings need a double quote (") as opposed to a single quote (').In other words,
"tabsToAdd": ['scss']
needs to be changed to"tabsToAdd": ["scss"]
. Doing this allowed me to perform a build.