frontend-united / generator-drupal-theme

A yeoman generator to start the foundation of any Drupal theme.
38 stars 15 forks source link

Not selector in gulpfile and gruntfile #11

Closed cdracars closed 9 years ago

cdracars commented 9 years ago

paths.js + '/*/.js', '!' + paths.js + '/*/.js'

Am I completely wrong in how i'm reading this or isn't it saying to set the source to all files in a directory and ignore the same set of files... I only say this because my gulp lint would not work until commenting out the not statement.

iamcarrico commented 9 years ago

This only exists in the gruntfile, and it is:

  src: ['**/*.js', '!**/*.min.js'],

Selecting all of the JavaScript, but not the minified versions.