Skip to content

Commit

Permalink
feature: gulpfile folder icon
Browse files Browse the repository at this point in the history
Node's module resolution allows you to replace
your gulpfile.js file with a directory named
gulpfile.js that contains an index.js file which is
treated as a gulpfile.js. This directory could then
contain your individual modules for tasks.

https://gulpjs.com/docs/en/getting-started/javascript-and-gulpfiles#splitting-a-gulpfile
  • Loading branch information
entrywayaudibly committed Oct 11, 2020
1 parent 8dfb4a2 commit 88c5d70
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 1 deletion.
50 changes: 50 additions & 0 deletions icons/folder-gulp-open.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions icons/folder-gulp.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 10 additions & 1 deletion src/icons/folderIcons.ts
Expand Up @@ -328,7 +328,16 @@ export const folderIcons: FolderTheme[] = [
'conversations',
],
},
{ name: 'folder-less', folderNames: ['less'] },
{ name: 'folder-less', folderNames: ['less'] },,
{
name: 'folder-gulp',
folderNames: [
'gulpfile.js',
'gulpfile.mjs',
'gulpfile.ts',
'gulpfile.babel.js'
]
},
{
name: 'folder-python',
folderNames: ['python', '__pycache__', '.pytest_cache'],
Expand Down

0 comments on commit 88c5d70

Please sign in to comment.