8
0
Quellcode durchsuchen

Changed path to ignored lib directory in gulpfiles.

Szymon Kupś vor 10 Jahren
Ursprung
Commit
8a5cb5ae7e
2 geänderte Dateien mit 2 neuen und 2 gelöschten Zeilen
  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 );