chore: don't put the assets and deps in the src folder
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 4.1 KiB After Width: | Height: | Size: 4.1 KiB |
Before Width: | Height: | Size: 147 KiB After Width: | Height: | Size: 147 KiB |
Before Width: | Height: | Size: 27 KiB After Width: | Height: | Size: 27 KiB |
Before Width: | Height: | Size: 469 KiB After Width: | Height: | Size: 469 KiB |
|
@ -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'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|