#32 Added "html" paths into gulpfile

This commit is contained in:
Serraniel 2020-11-02 18:38:51 +01:00
parent 25c41d7bed
commit 448cc3ecb6
Signed by: Serraniel
GPG key ID: 3690B4E7364525D3

View file

@ -25,6 +25,7 @@ const src = {
styles: 'src/stylesheets',
scripts: 'src/javascript',
images: 'src/images',
html: 'src/html',
}
// Build path
@ -34,6 +35,7 @@ const tmp = {
styles: '.tmp/stylesheets',
scripts: '.tmp/javascript',
images: '.tmp/images',
html: '.tmp/html',
}
// Dist path
@ -44,18 +46,21 @@ const dist = {
styles: 'dist/chrome/stylesheets',
scripts: 'dist/chrome/javascript',
images: 'dist/chrome/images',
html: 'dist/chrome/html',
},
firefox: {
root: 'dist/firefox',
styles: 'dist/firefox/stylesheets',
scripts: 'dist/firefox/javascript',
images: 'dist/firefox/images',
html: 'dist/firefox/html',
},
opera: {
root: 'dist/opera',
styles: 'dist/opera/stylesheets',
scripts: 'dist/opera/javascript',
images: 'dist/opera/images',
html: 'dist/opera/html',
},
zip: 'dist/zips',
}