@markusantonwolf/ta-foodtrucks
Version:
TA-Foodtrucks plugin shows the next food truck and street food dates in your area based on Craftplaces API. You can customize the endpoints to get all dates for a specific vendor, for a specific city or just for a location you are interested in. The light
18 lines (15 loc) • 459 B
JavaScript
const config = require('config')
const { src, dest } = require('gulp')
const fileinclude = require('gulp-file-include')
const SOURCE_VIEWS = config.get('source.views')
const DESTINATION_VIEWS = config.get('destination.views')
module.exports.html = () => {
return src(SOURCE_VIEWS)
.pipe(
fileinclude({
prefix: '@@',
basepath: '@file',
})
)
.pipe(dest(DESTINATION_VIEWS))
}