dotiful / web-template

boilerplate for new web projects

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Contributor Covenant

Available Tasks

BuildTaskBuilder exposes the following tasks when using the default config:

General

  • gulp: First clears your destination directory, then calls dev, then watchand then starts up a browserSync webserver
  • gulp prod: Clears destination, then creates production files
  • gulp serve: Just boots up and runs the server; changes won't be watched (as no watch tasks are started)
  • gulp clean: Removes the destination folder

JS

  • jsDev: Clears JS folder in destination, converts JS files, then halts
  • jsWatch: Only watches JS files (triggers on change)
  • js: jsDev then jsWatch
  • jsProd: Clears JS folder in destination, converts and minifies files for production

CSS

  • cssDev: Clears CSS folder in destination, converts css files, then halts
  • cssWatch: Only watches CSS files (triggers on change)
  • css: cssDev then cssWatch
  • cssProd: Clears CSS folder in destination, converts and minifies files for production

HTML

  • htmlDev: Clears HTML folder in destination, copies all HTML files
  • htmlWatch: Only watches HTML files (triggers on change)
  • html: htmlDev then htmlWatch
  • htmlProd: Clears HTML folder in destination, converts and minifies files for production

About

boilerplate for new web projects

License:MIT License


Languages

Language:JavaScript 96.1%Language:HTML 2.1%Language:SCSS 1.8%