Sfoglia il codice sorgente

Changed path to ignored lib directory in gulpfiles.

Szymon Kupś 10 anni fa
parent
commit
8a5cb5ae7e
2 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. 1 1
      dev/tasks/dev/templates/gulpfile.js
  2. 1 1
      gulpfile.js

+ 1 - 1
dev/tasks/dev/templates/gulpfile.js

@@ -9,7 +9,7 @@ const config = {
 	WORKSPACE_DIR: '..',
 
 	// Files ignored by jshit and jscs tasks. Files from .gitignore will be added automatically during tasks execution.
-	IGNORED_FILES: [ 'lib/**' ]
+	IGNORED_FILES: [ 'src/lib/**' ]
 };
 
 require( './dev/tasks/lint/tasks' )( config );

+ 1 - 1
gulpfile.js

@@ -10,7 +10,7 @@ const config = {
 	WORKSPACE_DIR: '..',
 
 	// Files ignored by jshit and jscs tasks. Files from .gitignore will be added automatically during tasks execution.
-	IGNORED_FILES: [ 'lib/**' ]
+	IGNORED_FILES: [ 'src/lib/**' ]
 };
 
 require( './dev/tasks/build/tasks' )( config );