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