You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 10, 2019. It is now read-only.
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.
The text was updated successfully, but these errors were encountered:
Fixespattern-lab#23 and fixespattern-lab#15. Rewrites `findTab` to synchronous check if a file exists. If found, the file is copied over to the public patterns folder, or if not found, and empty file is created in its place. Also refactors the JS for improved clarity. This also closespattern-lab#22 by updating the README.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.The text was updated successfully, but these errors were encountered: