pattern-lab / plugin-node-tab

ARCHIVED - The Tab plugin allows you to define additional code tabs to the pattern viewer / modal.
http://patternlab.io/
MIT License
5 stars 9 forks source link

String format for tabsToAdd array #22

Open dstmartin opened 7 years ago

dstmartin commented 7 years ago

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.

c42705 commented 6 years ago

@bmuenzenmeyer please update README.md with this update, I ran into the same issue.

juanfernandes commented 6 years ago

i have created a pull request to fix this.

https://github.com/pattern-lab/plugin-node-tab/pull/27