0.8.0 • Published 6 years ago

tepez-static-website v0.8.0

Weekly downloads
47
License
MIT
Repository
github
Last release
6 years ago

tepez-static-website

A static website generator for Tepez websites.

Install

npm install --save-dev tepez-static-website

Usage

  • Create configuration files for the Gulp and Metalsmith tasks.

  • Create a gulpfile.js in the using project:

const Gulp = require('gulp');
const TepezStaticWebsite = require('tepez-static-website');
const GulpConfig = require('./config/gulp');
const MetalsmithConfig = require('./config/metalsmith');


TepezStaticWebsite.setGulpConfig(GulpConfig);
TepezStaticWebsite.setMetalsmithConfig(MetalsmithConfig);

TepezStaticWebsite.loadTasks(Gulp);