chore: don't put the assets and deps in the src folder

This commit is contained in:
Kazhnuz Klappsthul 2020-11-08 20:00:30 +01:00
parent a6b42b0775
commit d30d01ba38
43 changed files with 2 additions and 2 deletions

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 4.1 KiB

View File

Before

Width:  |  Height:  |  Size: 147 KiB

After

Width:  |  Height:  |  Size: 147 KiB

View File

Before

Width:  |  Height:  |  Size: 27 KiB

After

Width:  |  Height:  |  Size: 27 KiB

View File

Before

Width:  |  Height:  |  Size: 469 KiB

After

Width:  |  Height:  |  Size: 469 KiB

View File

@ -39,12 +39,12 @@ function jsadmin() {
} }
function dep() { function dep() {
return src(['src/dep/**/*']) return src(['dep/**/*'])
.pipe(dest('dist/dep')); .pipe(dest('dist/dep'));
} }
function assets() { function assets() {
return src(['src/assets/**/*']) return src(['assets/**/*'])
.pipe(dest('dist')); .pipe(dest('dist'));
} }