UNPKG

@cloudcannon/suite

Version:

A suite of gulp tools to manage static sites on CloudCannon

29 lines (26 loc) 531 B
const gulp = require("gulp"); const suite = require("."); suite.dev(gulp); suite.dist(gulp, { "dist": { "baseurl": "staging" } }); suite.screenshots(gulp); suite.i18n(gulp, { "i18n": { "source_version": 2 } }); suite.state(gulp, {}); suite.help(gulp); suite.proofer(gulp, { internal_domains: ['localhost:4000'], check_external_hash: true, cache: { timeframe: 60000, storage_dir: '_cache.json' } }); suite.state(gulp); gulp.task("default", gulp.series("help"));