28 lines
478 B
JavaScript
28 lines
478 B
JavaScript
import gulp from 'gulp'
|
|
import { fontsStyle, otfToTtf, ttfToWoff } from './js/tasks/fonts.js'
|
|
|
|
const buildFolder = `./public`
|
|
const srcFolder = `./src`
|
|
const appFolder = `.`
|
|
|
|
const path = {
|
|
build: {
|
|
fonts: `${buildFolder}/fonts/`,
|
|
},
|
|
src: {
|
|
fonts: `${srcFolder}/fonts/*.*`,
|
|
},
|
|
buildFolder,
|
|
srcFolder,
|
|
appFolder,
|
|
}
|
|
|
|
const app = {
|
|
gulp,
|
|
path,
|
|
}
|
|
|
|
const fonts = gulp.series(otfToTtf, ttfToWoff, fontsStyle)
|
|
|
|
export { app, fonts }
|