lemonstand / lemonsync

A command line tool to work on LemonStand themes locally.
Other
1 stars 0 forks source link

Ignoring folders not working #16

Closed hotmeteor closed 9 years ago

hotmeteor commented 9 years ago

I can't seem to get the ignore to work properly. Ignoring node_modules doesn't work. Here's my pattern:

ignore_patterns = [ "*.tmp", "*.TMP", "*/.git*", "*.DS_STORE", "_themes", "node_modules", "src/bower_components" ]

Related to #2

ChrisZieba commented 9 years ago

Have you tried "node_modules/*" or "node_modules*"?

hotmeteor commented 9 years ago

I updated to include both patterns but still no dice

ignore_patterns = [ "*.tmp", "*.TMP", "*/.git*", "*.DS_STORE", "_themes", "node_modules/*", "node_modules*", "src/bower_components" ]
hotmeteor commented 9 years ago

Geez... reading the docs might help. RTFM Adam.

ignore_patterns = [ "*/directory/*" ]